connection = $connection; } /** * Sets the specified greeting to the transport. * * @param string $greeting */ public function setGreeting( $greeting ) { $this->greeting = $greeting; } /** * Returns the current state of the IMAP transport. * * @return int */ public function getStatus() { return $this->state; } /** * Sets the current state of the IMAP transport to the specified state. * * @param int $status */ public function setStatus( $status ) { $this->state = $status; } } ?>