Passed
Pull Request — master (#600)
by Mathias
13:24
created
module/Organizations/config/module.config.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@  discard block
 block discarded – undo
5 5
  * @author Mathias Gelhausen <[email protected]>
6 6
  */
7 7
 
8
- declare(strict_types=1);
8
+    declare(strict_types=1);
9 9
 
10
- namespace Organizations;
10
+    namespace Organizations;
11 11
 
12 12
 use Laminas\ServiceManager\Factory\InvokableFactory;
13 13
 
@@ -74,15 +74,15 @@  discard block
 block discarded – undo
74 74
     'view_manager' => [
75 75
         // Map template to files. Speeds up the lookup through the template stack.
76 76
         'template_map' => [
77
-             'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
78
-             'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
79
-             'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
80
-             'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
81
-             'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
82
-             'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
83
-             'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
84
-             'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
85
-             'organizations/form/featured-companies-filter-radio' => __DIR__ . '/../view/form/featured-companies-filter-radio.phtml',
77
+                'organizations/index/edit' => __DIR__ . '/../view/organizations/index/form.phtml',
78
+                'organizations/form/employees-fieldset' => __DIR__ . '/../view/form/employees-fieldset.phtml',
79
+                'organizations/form/employee-fieldset' => __DIR__ .'/../view/form/employee-fieldset.phtml',
80
+                'organizations/form/invite-employee-bar' => __DIR__ . '/../view/form/invite-employee-bar.phtml',
81
+                'organizations/error/no-parent' => __DIR__ . '/../view/error/no-parent.phtml',
82
+                'organizations/error/invite' => __DIR__ . '/../view/error/invite.phtml',
83
+                'organizations/mail/invite-employee' => __DIR__ . '/../view/mail/invite-employee.phtml',
84
+                'organizations/form/workflow-fieldset' => __DIR__ . '/../view/form/workflow-fieldset.phtml',
85
+                'organizations/form/featured-companies-filter-radio' => __DIR__ . '/../view/form/featured-companies-filter-radio.phtml',
86 86
             'organizations/profile/disabled' => __DIR__ . '/../view/organizations/profile/disabled.phtml',
87 87
         ],
88 88
         // Where to look for view templates not mapped above
@@ -92,21 +92,21 @@  discard block
 block discarded – undo
92 92
     ],
93 93
     'form_elements' => [
94 94
         'invokables' => [
95
-             'Organizations/Form' => 'Organizations\Form\Organizations',
96
-             'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
97
-             'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
98
-             'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
99
-             'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
100
-             'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
101
-             //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
102
-             'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
103
-             'Organizations/Employees'                    => 'Organizations\Form\Employees',
104
-             'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
105
-             'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
106
-             'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
107
-             'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
108
-             'Organizations/Profile'                      => \Organizations\Form\OrganizationsProfileForm::class,
109
-             'Organizations/ProfileFieldset'              => \Organizations\Form\OrganizationsProfileFieldset::class
95
+                'Organizations/Form' => 'Organizations\Form\Organizations',
96
+                'Organizations/OrganizationsContactForm'     => 'Organizations\Form\OrganizationsContactForm',
97
+                'Organizations/OrganizationsNameForm'        => 'Organizations\Form\OrganizationsNameForm',
98
+                'Organizations/OrganizationsDescriptionForm' => 'Organizations\Form\OrganizationsDescriptionForm',
99
+                'Organizations/OrganizationsContactFieldset' => 'Organizations\Form\OrganizationsContactFieldset',
100
+                'Organizations/OrganizationsDescriptionFieldset' => 'Organizations\Form\OrganizationsDescriptionFieldset',
101
+                //'Organizations/OrganizationFieldset'       => 'Organizations\Form\OrganizationFieldset',
102
+                'Organizations/EmployeesContainer'           => 'Organizations\Form\EmployeesContainer',
103
+                'Organizations/Employees'                    => 'Organizations\Form\Employees',
104
+                'Organizations/InviteEmployeeBar'            => 'Organizations\Form\Element\InviteEmployeeBar',
105
+                'Organizations/Employee'                     => 'Organizations\Form\Element\Employee',
106
+                'Organizations/WorkflowSettings'             => 'Organizations\Form\WorkflowSettings',
107
+                'Organizations/WorkflowSettingsFieldset'     => 'Organizations\Form\WorkflowSettingsFieldset',
108
+                'Organizations/Profile'                      => \Organizations\Form\OrganizationsProfileForm::class,
109
+                'Organizations/ProfileFieldset'              => \Organizations\Form\OrganizationsProfileFieldset::class
110 110
         ],
111 111
         'factories' => [
112 112
             'Organizations/OrganizationsNameFieldset'    => \Organizations\Factory\Form\OrganizationsNameFieldsetFactory::class,
@@ -231,13 +231,13 @@  discard block
 block discarded – undo
231 231
 
232 232
     'service_manager' => [
233 233
         'invokables' => [
234
-           'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
234
+            'Organizations\Auth\Dependency\EmployeeListListener' => 'Organizations\Auth\Dependency\EmployeeListListener'
235 235
         ],
236 236
         'factories' => [
237
-           'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
238
-           'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
239
-           'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
240
-           'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
237
+            'Organizations\Auth\Dependency\ListListener' => 'Organizations\Factory\Auth\Dependency\ListListenerFactory',
238
+            'Organizations\ImageFileCache\Manager' => 'Organizations\Factory\ImageFileCache\ManagerFactory',
239
+            'Organizations\ImageFileCache\ODMListener' => 'Organizations\Factory\ImageFileCache\ODMListenerFactory',
240
+            'Organizations\ImageFileCache\ApplicationListener' => 'Organizations\Factory\ImageFileCache\ApplicationListenerFactory',
241 241
         ],
242 242
     ],
243 243
 
Please login to merge, or discard this patch.
module/Organizations/config/router.config.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,9 +8,9 @@
 block discarded – undo
8 8
  * @license   MIT
9 9
  */
10 10
 
11
- declare(strict_types=1);
11
+    declare(strict_types=1);
12 12
 
13
- namespace Organizations;
13
+    namespace Organizations;
14 14
 
15 15
 return array(
16 16
     'router' => array(
Please login to merge, or discard this patch.