Completed
Branch master (4d91ab)
by Daniel
04:27
created
lib/Metadata/ClassMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     public function __construct($name, array $grids)
13 13
     {
14 14
         parent::__construct($name);
15
-        array_map(function (GridMetadata $grid) {
15
+        array_map(function(GridMetadata $grid) {
16 16
         }, $grids);
17 17
 
18 18
         $this->grids = $grids;
Please login to merge, or discard this patch.
lib/Metadata/GridMetadata.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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\Metadata;
6 6
 
Please login to merge, or discard this patch.
lib/Cell/PropertyView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 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\Cell;
6 6
 
Please login to merge, or discard this patch.
lib/Cell/PropertyType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
     public function configureOptions(OptionsResolver $options)
23 23
     {
24 24
         $options->setRequired(['property']);
25
-        $options->setAllowedTypes('property', [ 'string' ]);
25
+        $options->setAllowedTypes('property', ['string']);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.