buildCommand() public method

Build the comand string.
public buildCommand ( ) : string
return string
Example #1
0
 public function testBuildCommand()
 {
     $e = new Event($this->id, 'php -i');
     $this->assertSame("php -i", $e->buildCommand());
 }