@@ -348,6 +348,9 @@ |
||
| 348 | 348 | { |
| 349 | 349 | protected $message; |
| 350 | 350 | |
| 351 | + /** |
|
| 352 | + * @param string $message |
|
| 353 | + */ |
|
| 351 | 354 | public function __construct($message) |
| 352 | 355 | { |
| 353 | 356 | $this->message = $message; |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | class RoboFile extends \Robo\Tasks |
| 17 | 17 | { |
| 18 | - /** |
|
| 18 | + /** |
|
| 19 | 19 | * Watch a file. |
| 20 | 20 | * |
| 21 | 21 | * Demonstrates the 'watch' command. Runs 'composer update' any time |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | } |
| 87 | 87 | while (false !== ($file = readdir($dir))) { |
| 88 | 88 | if (in_array($file, $this->exclude)) { |
| 89 | - continue; |
|
| 89 | + continue; |
|
| 90 | 90 | } |
| 91 | 91 | if (($file !== '.') && ($file !== '..')) { |
| 92 | 92 | $srcFile = $src . '/' . $file; |
@@ -33,7 +33,6 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * Constructor. This should not be documented |
| 35 | 35 | * |
| 36 | - * @param array|Iterator $files |
|
| 37 | 36 | */ |
| 38 | 37 | public function __construct() |
| 39 | 38 | { |
@@ -44,7 +43,7 @@ discard block |
||
| 44 | 43 | * |
| 45 | 44 | * @param string $dst |
| 46 | 45 | * |
| 47 | - * @return Concat The current instance |
|
| 46 | + * @return TestedRoboTask The current instance |
|
| 48 | 47 | */ |
| 49 | 48 | public function to($dst) |
| 50 | 49 | { |
@@ -12,6 +12,9 @@ |
||
| 12 | 12 | protected $capturedOutput; |
| 13 | 13 | protected $logger; |
| 14 | 14 | |
| 15 | + /** |
|
| 16 | + * @param \League\Container\Container $container |
|
| 17 | + */ |
|
| 15 | 18 | public function initSeeInOutputTrait($container, $input = null) |
| 16 | 19 | { |
| 17 | 20 | $this->capturedOutput = ''; |
@@ -132,6 +132,9 @@ |
||
| 132 | 132 | $this->assertNotNull($this->app->find('generate:user-avatar')); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | + /** |
|
| 136 | + * @param string $name |
|
| 137 | + */ |
|
| 135 | 138 | protected function createCommand($name) |
| 136 | 139 | { |
| 137 | 140 | $commandInfo = new CommandInfo($this->roboCommandFileInstance, $name); |
@@ -145,6 +145,10 @@ |
||
| 145 | 145 | protected $key; |
| 146 | 146 | protected $value; |
| 147 | 147 | |
| 148 | + /** |
|
| 149 | + * @param string $key |
|
| 150 | + * @param string $value |
|
| 151 | + */ |
|
| 148 | 152 | public function __construct($key, $value) |
| 149 | 153 | { |
| 150 | 154 | $this->key = $key; |
@@ -16,6 +16,9 @@ |
||
| 16 | 16 | ]); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | + /** |
|
| 20 | + * @param string $expected |
|
| 21 | + */ |
|
| 19 | 22 | protected function adjustQuotes($expected) |
| 20 | 23 | { |
| 21 | 24 | $isWindows = defined('PHP_WINDOWS_VERSION_MAJOR'); |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | use _generated\CodeGuyActions; |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * Define custom actions here |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * Define custom actions here |
|
| 25 | + */ |
|
| 26 | 26 | } |
@@ -11,10 +11,10 @@ discard block |
||
| 11 | 11 | { |
| 12 | 12 | $I->wantTo('write lines with WriteToFile task'); |
| 13 | 13 | $I->taskWriteToFile('blogpost.md') |
| 14 | - ->line('****') |
|
| 15 | - ->line('hello world') |
|
| 16 | - ->line('****') |
|
| 17 | - ->run(); |
|
| 14 | + ->line('****') |
|
| 15 | + ->line('hello world') |
|
| 16 | + ->line('****') |
|
| 17 | + ->run(); |
|
| 18 | 18 | $I->seeFileFound('blogpost.md'); |
| 19 | 19 | $I->seeFileContentsEqual(<<<HERE |
| 20 | 20 | **** |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | public function appendToFile(CliGuy $I) |
| 29 | 29 | { |
| 30 | 30 | $I->taskWriteToFile('a.txt') |
| 31 | - ->append() |
|
| 32 | - ->line('hello world') |
|
| 33 | - ->run(); |
|
| 31 | + ->append() |
|
| 32 | + ->line('hello world') |
|
| 33 | + ->run(); |
|
| 34 | 34 | $I->seeFileFound('a.txt'); |
| 35 | 35 | $I->seeFileContentsEqual(<<<HERE |
| 36 | 36 | Ahello world |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | public function testWouldChange(CliGuy $I) |
| 43 | 43 | { |
| 44 | 44 | $writeTask = $I->taskWriteToFile('a.txt') |
| 45 | - ->append(); |
|
| 45 | + ->append(); |
|
| 46 | 46 | $I->assertEquals(false, $writeTask->wouldChange(), "No changes to test file."); |
| 47 | 47 | $writeTask->line('hello world'); |
| 48 | 48 | $I->assertEquals(true, $writeTask->wouldChange(), "Test file would change."); |
@@ -68,15 +68,15 @@ discard block |
||
| 68 | 68 | { |
| 69 | 69 | $I->wantTo('append lines with WriteToFile task, but only if pattern does not match'); |
| 70 | 70 | $I->taskWriteToFile('blogpost.md') |
| 71 | - ->line('****') |
|
| 72 | - ->line('hello world') |
|
| 73 | - ->line('****') |
|
| 74 | - ->appendUnlessMatches('/hello/', 'Should not add this') |
|
| 75 | - ->appendUnlessMatches('/goodbye/', 'Should add this') |
|
| 76 | - ->appendIfMatches('/hello/', ' and should also add this') |
|
| 77 | - ->appendIfMatches('/goodbye/', ' but should not add this') |
|
| 78 | - ->appendIfMatches('/should/', '!') |
|
| 79 | - ->run(); |
|
| 71 | + ->line('****') |
|
| 72 | + ->line('hello world') |
|
| 73 | + ->line('****') |
|
| 74 | + ->appendUnlessMatches('/hello/', 'Should not add this') |
|
| 75 | + ->appendUnlessMatches('/goodbye/', 'Should add this') |
|
| 76 | + ->appendIfMatches('/hello/', ' and should also add this') |
|
| 77 | + ->appendIfMatches('/goodbye/', ' but should not add this') |
|
| 78 | + ->appendIfMatches('/should/', '!') |
|
| 79 | + ->run(); |
|
| 80 | 80 | $I->seeFileFound('blogpost.md'); |
| 81 | 81 | $I->seeFileContentsEqual(<<<HERE |
| 82 | 82 | **** |