@@ -11,7 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | public function _before(CliGuy $I) |
| 13 | 13 | { |
| 14 | - $I->amInPath(codecept_data_dir().'sandbox'); |
|
| 14 | + $I->amInPath(codecept_data_dir() . 'sandbox'); |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | public function toSimulateDirCreation(CliGuy $I) |
@@ -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 | **** |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | $I = new CliGuy($scenario); |
| 3 | 3 | |
| 4 | 4 | $I->wantTo('flatten dir with FlattenDir task'); |
| 5 | -$I->amInPath(codecept_data_dir().'sandbox'); |
|
| 5 | +$I->amInPath(codecept_data_dir() . 'sandbox'); |
|
| 6 | 6 | $I->taskFlattenDir([ |
| 7 | 7 | 'some/deeply/nested/*.re' => 'flattened', |
| 8 | 8 | '*.txt' => 'flattened' |
@@ -2,7 +2,7 @@ |
||
| 2 | 2 | $I = new CliGuy($scenario); |
| 3 | 3 | |
| 4 | 4 | $I->wantTo('copy dir with CopyDir task'); |
| 5 | -$I->amInPath(codecept_data_dir().'sandbox'); |
|
| 5 | +$I->amInPath(codecept_data_dir() . 'sandbox'); |
|
| 6 | 6 | $I->taskCopyDir(['box' => 'bin']) |
| 7 | 7 | ->run(); |
| 8 | 8 | $I->seeDirFound('bin'); |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | { |
| 5 | 5 | public function _before(CliGuy $I) |
| 6 | 6 | { |
| 7 | - $I->amInPath(codecept_data_dir().'sandbox'); |
|
| 7 | + $I->amInPath(codecept_data_dir() . 'sandbox'); |
|
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function toCreateDir(CliGuy $I) |
@@ -2,9 +2,9 @@ |
||
| 2 | 2 | $I = new CliGuy($scenario); |
| 3 | 3 | |
| 4 | 4 | $I->wantTo('flatten dir with FlattenDir task including parents'); |
| 5 | -$I->amInPath(codecept_data_dir().'sandbox'); |
|
| 5 | +$I->amInPath(codecept_data_dir() . 'sandbox'); |
|
| 6 | 6 | $I->taskFlattenDir('some/deeply/nested/*.re') |
| 7 | - ->includeParents(array(1,1)) |
|
| 7 | + ->includeParents(array(1, 1)) |
|
| 8 | 8 | ->parentDir('some') |
| 9 | 9 | ->to('flattened') |
| 10 | 10 | ->run(); |
@@ -206,7 +206,7 @@ |
||
| 206 | 206 | /** |
| 207 | 207 | * @param string $filename |
| 208 | 208 | * |
| 209 | - * @return bool|string |
|
| 209 | + * @return string|false |
|
| 210 | 210 | */ |
| 211 | 211 | protected static function archiveType($filename) |
| 212 | 212 | { |
@@ -274,6 +274,6 @@ |
||
| 274 | 274 | */ |
| 275 | 275 | protected static function getTmpDir() |
| 276 | 276 | { |
| 277 | - return getcwd().'/tmp'.rand().time(); |
|
| 277 | + return getcwd() . '/tmp' . rand() . time(); |
|
| 278 | 278 | } |
| 279 | 279 | } |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | /** |
| 7 | 7 | * Executes shell command |
| 8 | 8 | * |
| 9 | - * @param string|\Robo\Contract\CommandInterface $command |
|
| 9 | + * @param string $command |
|
| 10 | 10 | * |
| 11 | 11 | * @return \Robo\Result |
| 12 | 12 | */ |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | protected $run = ''; |
| 48 | 48 | |
| 49 | 49 | /** |
| 50 | - * @param string|\Robo\Result $cidOrResult |
|
| 50 | + * @param string $cidOrResult |
|
| 51 | 51 | */ |
| 52 | 52 | public function __construct($cidOrResult) |
| 53 | 53 | { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
| 76 | - * @param string|\Robo\Contract\CommandInterface $command |
|
| 76 | + * @param string $command |
|
| 77 | 77 | * |
| 78 | 78 | * @return $this |
| 79 | 79 | */ |
@@ -88,6 +88,6 @@ |
||
| 88 | 88 | */ |
| 89 | 89 | public function getCommand() |
| 90 | 90 | { |
| 91 | - return $this->command . ' ' . $this->arguments . ' ' . $this->cid.' '.$this->run; |
|
| 91 | + return $this->command . ' ' . $this->arguments . ' ' . $this->cid . ' ' . $this->run; |
|
| 92 | 92 | } |
| 93 | 93 | } |