Completed
Pull Request — master (#815)
by
unknown
02:22
created
tests/unit/Task/WatchTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         $task->monitor(
40 40
             'src',
41
-            function () {
41
+            function() {
42 42
                 //do nothing
43 43
             },
44 44
             1 // CREATE
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
         $task->monitor(
55 55
             'src',
56
-            function () {
56
+            function() {
57 57
                 //do nothing
58 58
             },
59 59
             [
Please login to merge, or discard this patch.
tests/_bootstrap.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 $kernel->init([
6 6
     'debug' => true,
7 7
     'includePaths' => [
8
-        __DIR__.'/../src',
9
-        __DIR__.'/../vendor/symfony/process',
10
-        __DIR__.'/../vendor/symfony/console',
11
-        __DIR__.'/../vendor/henrikbjorn/lurker/src',
8
+        __DIR__ . '/../src',
9
+        __DIR__ . '/../vendor/symfony/process',
10
+        __DIR__ . '/../vendor/symfony/console',
11
+        __DIR__ . '/../vendor/henrikbjorn/lurker/src',
12 12
     ]
13 13
 ]);
Please login to merge, or discard this patch.
tests/cli/ExecCest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,20 +36,20 @@
 block discarded – undo
36 36
         // variables are present.
37 37
         $task = $I->taskExec('env | wc -l')->interactive(false);
38 38
         $result = $task->run();
39
-        $start_count = (int) $result->getMessage();
39
+        $start_count = (int)$result->getMessage();
40 40
         verify($start_count)->greaterThan(0);
41 41
 
42 42
         // Verify that we get the same amount of environment variables with
43 43
         // another exec call.
44 44
         $task = $I->taskExec('env | wc -l')->interactive(false);
45 45
         $result = $task->run();
46
-        verify((int) $result->getMessage())->equals($start_count);
46
+        verify((int)$result->getMessage())->equals($start_count);
47 47
 
48 48
         // Now run the same command, but this time add another environment
49 49
         // variable, and see if our count increases by one.
50 50
         $task = $I->taskExec('env | wc -l')->interactive(false);
51 51
         $task->env('FOO', 'BAR');
52 52
         $result = $task->run();
53
-        verify((int) $result->getMessage())->equals($start_count + 1);
53
+        verify((int)$result->getMessage())->equals($start_count + 1);
54 54
     }
55 55
 }
Please login to merge, or discard this patch.
tests/unit/Task/SemVerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     public function testSemverParseFileWithWindowsLineEndings()
52 52
     {
53 53
         $fixturePath = tempnam(sys_get_temp_dir(), 'semver');
54
-        $semverFile = str_replace("\n", "\r\n", file_get_contents(codecept_data_dir().'.semver'));
54
+        $semverFile = str_replace("\n", "\r\n", file_get_contents(codecept_data_dir() . '.semver'));
55 55
         file_put_contents($fixturePath, $semverFile);
56 56
 
57 57
         $res = (new \Robo\Task\Development\SemVer($fixturePath))
Please login to merge, or discard this patch.
examples/src/Robo/Plugin/Commands/StdinCommands.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
     /**
13 13
      * @command cat
14
-     * @param string $file
15 14
      * @default $file -
16 15
      */
17 16
     public function cat(InputInterface $input)
Please login to merge, or discard this patch.
tests/cli/CollectionCest.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     public function _before(CliGuy $I)
12 12
     {
13
-        $I->amInPath(codecept_data_dir().'sandbox');
13
+        $I->amInPath(codecept_data_dir() . 'sandbox');
14 14
     }
15 15
 
16 16
     public function toRunMultipleTasksViaACollectionBuilder(CliGuy $I)
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             ->rollback(
122 122
                 $I->taskDeleteDir('j')
123 123
             )
124
-            ->rollbackCode(function () {
124
+            ->rollbackCode(function() {
125 125
                 throw new ForcedException('Aborting rollback.');
126 126
             })
127 127
             ->taskFilesystemStack()
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
                 ->mkdir('stuff')
181 181
             ->taskForEach($processList)
182 182
                 ->withBuilder(
183
-                    function ($builder, $key, $value) {
183
+                    function($builder, $key, $value) {
184 184
                         return $builder
185 185
                             ->taskFilesystemStack()
186 186
                                 ->touch("stuff/{$value}.txt");
@@ -237,32 +237,32 @@  discard block
 block discarded – undo
237 237
 
238 238
     public function toRollbackInCorrectOrder(CliGuy $I)
239 239
     {
240
-        $expected_order = [6,5,4,3,2,1];
240
+        $expected_order = [6, 5, 4, 3, 2, 1];
241 241
         $actual_order = [];
242 242
         $collection = $I->collectionBuilder();
243
-        $collection->rollbackCode(function () use (&$actual_order) {
243
+        $collection->rollbackCode(function() use (&$actual_order) {
244 244
             $actual_order[] = 1;
245 245
         });
246
-        $collection->rollbackCode(function () use (&$actual_order) {
246
+        $collection->rollbackCode(function() use (&$actual_order) {
247 247
             $actual_order[] = 2;
248 248
         });
249
-        $collection->rollbackCode(function () use (&$actual_order) {
249
+        $collection->rollbackCode(function() use (&$actual_order) {
250 250
             $actual_order[] = 3;
251 251
         });
252 252
         // Add a nested collection with rollbacks.
253 253
         $nested_collection = $I->collectionBuilder();
254
-        $nested_collection->rollbackCode(function () use (&$actual_order) {
254
+        $nested_collection->rollbackCode(function() use (&$actual_order) {
255 255
             $actual_order[] = 4;
256 256
         });
257
-        $nested_collection->rollbackCode(function () use (&$actual_order) {
257
+        $nested_collection->rollbackCode(function() use (&$actual_order) {
258 258
             $actual_order[] = 5;
259 259
         });
260 260
         $collection->addTask($nested_collection);
261 261
 
262
-        $collection->rollbackCode(function () use (&$actual_order) {
262
+        $collection->rollbackCode(function() use (&$actual_order) {
263 263
             $actual_order[] = 6;
264 264
         });
265
-        $collection->addCode(function () {
265
+        $collection->addCode(function() {
266 266
             return Result::EXITCODE_ERROR;
267 267
         });
268 268
         $result = $collection->run();
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
         $collection = $I->getContainer()->get('collection');
463 463
 
464 464
         $collection->addCode(
465
-            function () {
465
+            function() {
466 466
                 throw new \RuntimeException('Error');
467 467
             }
468 468
         );
Please login to merge, or discard this patch.