Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
[zendframework#3536] Remove unused attribute in test assets
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Jan 23, 2013
1 parent 235d135 commit 97c16c0
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions tests/ZendTest/Mail/TestAsset/SmtpProtocolSpy.php
Original file line number Diff line number Diff line change
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 97c16c0

Please sign in to comment.