저자: Alejandro Celaya Alastrué
상속: extends Zend\Mvc\Controller\Plugin\AbstractPlugin, implements AcMailer\Service\MailServiceAwareInterface
예제 #1
0
 public function testMailServiceAwareness()
 {
     $this->assertSame($this->service, $this->plugin->getMailService());
     $anotherService = new MailServiceMock();
     $this->assertSame($this->plugin, $this->plugin->setMailService($anotherService));
     $this->assertSame($anotherService, $this->plugin->getMailService());
 }