Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#2 from zendframework/m…
Browse files Browse the repository at this point in the history
…aster

Update
  • Loading branch information
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 26 deletions.
1 change: 0 additions & 1 deletion src/Header/MessageId.php
Expand Up @@ -117,5 +117,4 @@ public function createMessageId()

return sha1($time . $user . $rand) . '@' . $hostName;
}

}
1 change: 0 additions & 1 deletion src/Protocol/Imap.php
Expand Up @@ -790,5 +790,4 @@ public function search(array $params)
}
return array();
}

}
8 changes: 0 additions & 8 deletions src/Protocol/Smtp.php
Expand Up @@ -45,14 +45,6 @@ class Smtp extends AbstractProtocol
protected $sess = false;


/**
* Indicates the HELO command has been issues
*
* @var bool
*/
protected $helo = false;


/**
* Indicates an smtp AUTH has been issued and authenticated
*
Expand Down
1 change: 0 additions & 1 deletion src/Storage/AbstractStorage.php
Expand Up @@ -338,5 +338,4 @@ public function seek($pos)
}
$this->iterationPos = $pos;
}

}
1 change: 0 additions & 1 deletion src/Storage/Mbox.php
Expand Up @@ -397,5 +397,4 @@ public function __wakeup()
}
}
}

}
14 changes: 0 additions & 14 deletions test/TestAsset/SmtpProtocolSpy.php
Expand Up @@ -22,7 +22,6 @@
class SmtpProtocolSpy extends Smtp
{
protected $connect = false;
protected $helo;
protected $mail;
protected $rcptTest = array();
protected $sess = true;
Expand All @@ -36,18 +35,15 @@ public function connect()
public function helo($serverName = '127.0.0.1')
{
parent::helo($serverName);
$this->helo = $serverName;
}

public function quit()
{
$this->helo = null;
$this->rset();
}

public function disconnect()
{
$this->helo = null;
$this->connect = false;
$this->rset();
}
Expand Down Expand Up @@ -91,16 +87,6 @@ public function isConnected()
return $this->connect;
}

/**
* Get server name we opened a connection with
*
* @return null|string
*/
public function getHelo()
{
return $this->helo;
}

/**
* Get value of mail property
*
Expand Down

0 comments on commit 5129baa

Please sign in to comment.