Passed
Push — develop ( 07e04a...00d2f1 )
by Daniel
06:10
created
src/Factory/Form/FormFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
      * @param FormFactoryInterface $formFactory
24 24
      * @param RouterInterface $router
25 25
      */
26
-    public function __construct(
26
+    public function __construct (
27 27
         FormFactoryInterface $formFactory,
28 28
         RouterInterface $router
29 29
     ) {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @param Form $component
36 36
      * @return FormInterface
37 37
      */
38
-    public function create(Form $component): FormInterface
38
+    public function create (Form $component): FormInterface
39 39
     {
40 40
         return $this->formFactory->create(
41 41
             $component->getFormType(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/Stacked/FeatureStackedFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @inheritdoc
13 13
      */
14
-    public function create(?array $ops = null): FeatureStacked
14
+    public function create (?array $ops = null): FeatureStacked
15 15
     {
16 16
         $component = new FeatureStacked();
17 17
         $this->init($component, $ops);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @inheritdoc
25 25
      */
26
-    public static function defaultOps(): array
26
+    public static function defaultOps (): array
27 27
     {
28 28
         return array_merge(
29 29
             parent::defaultOps(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/Stacked/FeatureStackedItemFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @inheritdoc
13 13
      */
14
-    public function create(?array $ops = null): FeatureStackedItem
14
+    public function create (?array $ops = null): FeatureStackedItem
15 15
     {
16 16
         $component = new FeatureStackedItem();
17 17
         $this->init($component, $ops);
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     /**
26 26
      * @inheritdoc
27 27
      */
28
-    public static function defaultOps(): array
28
+    public static function defaultOps (): array
29 29
     {
30 30
         return array_merge(
31 31
             parent::defaultOps(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/Columns/FeatureColumnsFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @inheritdoc
13 13
      */
14
-    public function create(?array $ops = null): FeatureColumns
14
+    public function create (?array $ops = null): FeatureColumns
15 15
     {
16 16
         $component = new FeatureColumns();
17 17
         $this->init($component, $ops);
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     /**
27 27
      * @inheritdoc
28 28
      */
29
-    public static function defaultOps(): array
29
+    public static function defaultOps (): array
30 30
     {
31 31
         return array_merge(
32 32
             parent::defaultOps(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/Columns/FeatureColumnsItemFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     /**
11 11
      * @inheritdoc
12 12
      */
13
-    public function create(?array $ops = null): FeatureColumnsItem
13
+    public function create (?array $ops = null): FeatureColumnsItem
14 14
     {
15 15
         $component = new FeatureColumnsItem();
16 16
         $this->init($component, $ops);
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @inheritdoc
24 24
      */
25
-    public static function defaultOps(): array
25
+    public static function defaultOps (): array
26 26
     {
27 27
         return array_merge(
28 28
             parent::defaultOps(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/AbstractFeatureItemFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
      * @param AbstractFeatureItem $component
12 12
      * @inheritdoc
13 13
      */
14
-    protected function init($component, ?array $ops = null): void
14
+    protected function init ($component, ?array $ops = null): void
15 15
     {
16 16
         parent::init($component, $ops);
17 17
         $component->setLabel($this->ops['label']);
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @inheritdoc
23 23
      */
24
-    public static function defaultOps(): array
24
+    public static function defaultOps (): array
25 25
     {
26 26
         return array_merge(
27 27
             parent::defaultOps(),
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Feature/TextList/FeatureTextListFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
     /**
12 12
      * @inheritdoc
13 13
      */
14
-    public function create(?array $ops = null): FeatureTextList
14
+    public function create (?array $ops = null): FeatureTextList
15 15
     {
16 16
         $component = new FeatureTextList();
17 17
         $this->init($component, $ops);
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @inheritdoc
25 25
      */
26
-    public static function defaultOps(): array
26
+    public static function defaultOps (): array
27 27
     {
28 28
         return array_merge(
29 29
             parent::defaultOps(),
Please login to merge, or discard this patch.
Factory/Entity/Component/Feature/TextList/FeatureTextListItemFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
     /**
12 12
      * @inheritdoc
13 13
      */
14
-    public function create(?array $ops = null): FeatureTextListItem
14
+    public function create (?array $ops = null): FeatureTextListItem
15 15
     {
16 16
         $component = new FeatureTextListItem();
17 17
         $this->init($component, $ops);
Please login to merge, or discard this patch.
src/Factory/Entity/Component/Form/FormFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @inheritdoc
16 16
      */
17
-    public function create(?array $ops = null): Form
17
+    public function create (?array $ops = null): Form
18 18
     {
19 19
         $component = new Form();
20 20
         $this->init($component, $ops);
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @inheritdoc
29 29
      */
30
-    public static function defaultOps(): array
30
+    public static function defaultOps (): array
31 31
     {
32 32
         return array_merge(
33 33
             parent::defaultOps(),
Please login to merge, or discard this patch.