| 1 | <?php |
||
| 12 | class Gulp extends Commands\Command |
||
| 13 | { |
||
| 14 | |||
| 15 | private $gulpfile = 'gulpfile.js'; |
||
| 16 | |||
| 17 | private $directory; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 1 | public function getGulpfile() |
|
| 24 | { |
||
| 25 | 1 | return $this->gulpfile; |
|
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $gulpfile |
||
| 31 | */ |
||
| 32 | 1 | public function setGulpfile($gulpfile) |
|
| 33 | { |
||
| 34 | 1 | $this->gulpfile = $gulpfile; |
|
| 35 | 1 | } |
|
| 36 | |||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | 1 | public function getDirectory() |
|
| 42 | { |
||
| 43 | 1 | return $this->directory; |
|
| 44 | } |
||
| 45 | |||
| 46 | |||
| 47 | /** |
||
| 48 | * @param string $directory |
||
| 49 | */ |
||
| 50 | 1 | public function setDirectory($directory) |
|
| 54 | |||
| 55 | |||
| 56 | 1 | public function execute($gulpCommand = NULL) |
|
| 72 | |||
| 73 | } |