@@ -23,7 +23,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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(), |
@@ -10,7 +10,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ discard block |
||
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 |
||
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(), |
@@ -11,7 +11,7 @@ |
||
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); |
@@ -14,7 +14,7 @@ discard block |
||
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 |
||
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(), |