notify() public method

See also: SplSubject::notify()
public notify ( )
Esempio n. 1
0
 public function testWillThrowAnExcpetionIfObserverIsNotAnEvent()
 {
     $command = $this->createTestInstance(array('__invoke'));
     $subject = new Subject();
     $subject->attach($command);
     $this->setExpectedException('\\Exception');
     $subject->notify();
 }