Goetas\Twital\EventDispatcher\SourceEvent::getTwital PHP 메소드

getTwital() 공개 메소드

public getTwital ( ) : Twital
리턴 Goetas\Twital\Twital
    public function getTwital()
    {
        return $this->twital;
    }

Usage Example

예제 #1
0
 public function testBase()
 {
     $template = md5(microtime());
     $ist = new SourceEvent($this->twital, $template);
     $this->assertSame($this->twital, $ist->getTwital());
     $this->assertSame($template, $ist->getTemplate());
 }