gitlab-com-adeattwood-pgrep/RoboFile.php
2018-03-26 20:13:25 +01:00

20 lines
No EOL
379 B
PHP

<?php
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/
class RoboFile extends \Robo\Tasks
{
// define public methods as commands
/**
* @command my-project:command-one
*/
function hello()
{
$this->io()->title("Build all site assets");
$this->taskExec('ls')->run();
}
}