Test Failed
Pull Request — master (#1003)
by Maxim
20:36 queued 08:54
created
src/Prototype/src/Command/ListCommand.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     public function perform(): int
13 13
     {
14 14
         $bindings = $this->registry->getPropertyBindings();
15
-        if ($bindings === []) {
15
+        if ($bindings === []){
16 16
             $this->comment('No prototype dependencies found.');
17 17
 
18 18
             return self::SUCCESS;
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
         $grid = $this->table(['Name:', 'Target:']);
22 22
 
23
-        foreach ($bindings as $binding) {
23
+        foreach ($bindings as $binding){
24 24
             $grid->addRow([$binding->property, $binding->type->name()]);
25 25
         }
26 26
 
Please login to merge, or discard this patch.
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@  discard block
 block discarded – undo
12 12
     public function perform(): int
13 13
     {
14 14
         $bindings = $this->registry->getPropertyBindings();
15
-        if ($bindings === []) {
15
+        if ($bindings === [])
16
+        {
16 17
             $this->comment('No prototype dependencies found.');
17 18
 
18 19
             return self::SUCCESS;
@@ -20,7 +21,8 @@  discard block
 block discarded – undo
20 21
 
21 22
         $grid = $this->table(['Name:', 'Target:']);
22 23
 
23
-        foreach ($bindings as $binding) {
24
+        foreach ($bindings as $binding)
25
+        {
24 26
             $grid->addRow([$binding->property, $binding->type->name()]);
25 27
         }
26 28
 
Please login to merge, or discard this patch.