mirror of
https://github.com/easychen/howto-make-more-money.git
synced 2025-08-22 22:16:22 +08:00
15 lines
281 B
PHP
15 lines
281 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
|
|
public function build()
|
|
{
|
|
$this->_exec("gitbook build . docs");
|
|
}
|
|
}
|