Created
September 18, 2018 21:31
-
-
Save stefpe/5b588c6d9b73b0cebe227f18ea1eb4c6 to your computer and use it in GitHub Desktop.
Robo basic start
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is project's console commands configuration for Robo task runner. | |
* | |
* @see http://robo.li/ | |
*/ | |
class RoboFile extends \Robo\Tasks | |
{ | |
/** | |
* Shows how to start with robo. | |
*/ | |
public function start() | |
{ | |
$this->io()->title('start coding robo'); | |
$this->io()->table([ | |
'#', 'Description' | |
], [ | |
['1.', 'Download robo.phar'], | |
['2.', 'Run php robo.phar init'], | |
['3.', 'Code your task as a function in Robofile.php'] | |
]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment