Test Failed
Push — master ( b381e6...5958d3 )
by Björn
02:48 queued 12s
created
module/Admin/src/Admin/Form/AclroleForm.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,10 +76,10 @@
 block discarded – undo
76 76
             array(
77 77
             'name' => 'reset',
78 78
             'attributes' => array(
79
-                   'type'  => 'reset',
80
-                  'value' => 'reset',
81
-                  'id' => 'resetbutton',
82
-               ),
79
+                    'type'  => 'reset',
80
+                    'value' => 'reset',
81
+                    'id' => 'resetbutton',
82
+                ),
83 83
             'options' => array(
84 84
             'label' => 'reset',
85 85
             ),
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
             array(
30 30
             'name' => 'aclroles_id',
31 31
             'attributes' => array(
32
-            'type'  => 'hidden' ,
32
+            'type'  => 'hidden',
33 33
             ),
34 34
             )
35 35
         );
Please login to merge, or discard this patch.
module/Admin/src/Admin/Form/RequestPasswordResetForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $label = $emailElement->getLabel('label');
43 43
         // @TODO: make translation-friendly
44 44
         foreach ($this->getAuthenticationOptions()->getAuthIdentityFields() as $mode) {
45
-            $label = (!empty($label) ? $label . ' or ' : '') . ucfirst($mode);
45
+            $label = (!empty($label) ? $label.' or ' : '').ucfirst($mode);
46 46
         }
47 47
         $emailElement->setLabel($label);
48 48
         
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/UserTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new User());
45
-        $tableGateway        = new TableGateway('user', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new UserTable($tableGateway);
45
+        $tableGateway = new TableGateway('user', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new UserTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/UserProfileTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new UserProfile());
45
-        $tableGateway        = new TableGateway('userprofile', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new UserProfileTable($tableGateway);
45
+        $tableGateway = new TableGateway('userprofile', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new UserProfileTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/ClientsTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new Clients());
45
-        $tableGateway        = new TableGateway('clients', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new ClientsTable($tableGateway);
45
+        $tableGateway = new TableGateway('clients', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new ClientsTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/AclTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new Acl());
45
-        $tableGateway        = new TableGateway('acl', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new AclTable($tableGateway);
45
+        $tableGateway = new TableGateway('acl', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new AclTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/AclresourceTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new Aclresource());
45
-        $tableGateway        = new TableGateway('aclresource', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new AclresourceTable($tableGateway);
45
+        $tableGateway = new TableGateway('aclresource', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new AclresourceTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/AclroleTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new Aclrole());
45
-        $tableGateway        = new TableGateway('aclrole', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new AclroleTable($tableGateway);
45
+        $tableGateway = new TableGateway('aclrole', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new AclroleTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
module/Admin/src/Admin/Factory/ApplicationsTableFactory.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,11 +39,11 @@
 block discarded – undo
39 39
      */
40 40
     public function createService(ServiceLocatorInterface $serviceLocator)
41 41
     {
42
-        $dbAdapter            = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
-        $resultSetPrototype    = new ResultSet();
42
+        $dbAdapter = $serviceLocator->get('Zend\Db\Adapter\Adapter');
43
+        $resultSetPrototype = new ResultSet();
44 44
         $resultSetPrototype->setArrayObjectPrototype(new Applications());
45
-        $tableGateway        = new TableGateway('applications', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new ApplicationsTable($tableGateway);
45
+        $tableGateway = new TableGateway('applications', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new ApplicationsTable($tableGateway);
47 47
         return $table;
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.