@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
@@ -12,7 +12,8 @@ discard block |
||
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 |
||
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 |