Completed
Push — develop ( 6e756f...bdea0a )
by
unknown
07:45
created
module/Core/src/Core/Form/TextSearchForm.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -73,25 +73,25 @@
 block discarded – undo
73 73
     {
74 74
         $this->setName('search');
75 75
         $this->setAttributes([
76
-                                 'data-handle-by' => 'native',
77
-                                 'method'         => 'get',
78
-                                 'class'          => 'form-inline search-form',
79
-                             ]
76
+                                    'data-handle-by' => 'native',
77
+                                    'method'         => 'get',
78
+                                    'class'          => 'form-inline search-form',
79
+                                ]
80 80
         );
81 81
 
82 82
         $this->add([
83
-                       'type'       => 'Text',
84
-                       'name'       => 'text',
85
-                       'options'    => [
86
-                           'label'              => /*@translate*/
87
-                               'Search',
88
-                           'use_formrow_helper' => false,
89
-                       ],
90
-                       'attributes' => [
91
-                           'class'       => 'form-control',
92
-                           'placeholder' => $this->getOption('placeholder'),
93
-                       ]
94
-                   ]
83
+                        'type'       => 'Text',
84
+                        'name'       => 'text',
85
+                        'options'    => [
86
+                            'label'              => /*@translate*/
87
+                                'Search',
88
+                            'use_formrow_helper' => false,
89
+                        ],
90
+                        'attributes' => [
91
+                            'class'       => 'form-control',
92
+                            'placeholder' => $this->getOption('placeholder'),
93
+                        ]
94
+                    ]
95 95
         );
96 96
 
97 97
 
Please login to merge, or discard this patch.
module/Core/src/Core/Factory/EventManager/EventManagerAbstractFactory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
             /* @var \Core\Listener\DeferredListenerAggregate $aggregate */
279 279
             $aggregate = $services->get('Core/Listener/DeferredListenerAggregate');
280 280
             $aggregate->setListeners($lazyListeners)
281
-                      ->attach($eventManager);
281
+                        ->attach($eventManager);
282 282
         }
283 283
     }
284 284
 
Please login to merge, or discard this patch.