Completed
Pull Request — master (#49)
by Daniel
09:15 queued 07:02
created
lib/ColumnFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Psi\Component\Grid;
6 6
 
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
 
60 60
     private function resolveLayers(ColumnInterface $column)
61 61
     {
62
-        $layers = [ $column ];
63
-        $seen = [ spl_object_hash($column) => true ];
62
+        $layers = [$column];
63
+        $seen = [spl_object_hash($column) => true];
64 64
 
65 65
         while (null !== $parentType = $column->getParent()) {
66 66
             $parent = $this->registry->get($parentType);
Please login to merge, or discard this patch.