Inheritance: extends ArrayObject
Exemplo n.º 1
0
Arquivo: Task.php Projeto: chh/bob
 function __construct($name, $application)
 {
     $this->name = $name;
     $this->application = $application;
     $this->description = TaskRegistry::$lastDescription;
     TaskRegistry::$lastDescription = '';
     $this->clear();
 }
Exemplo n.º 2
0
Arquivo: Dsl.php Projeto: chh/bob
function desc($desc)
{
    TaskRegistry::$lastDescription = $desc;
}