Test Failed
Push — master ( 5520e1...8c9c94 )
by Björn
28:23 queued 23:07
created
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.
module/Admin/src/Admin/Factory/SettingsTableFactory.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 Settings());
45
-        $tableGateway        = new TableGateway('settings', $dbAdapter, null, $resultSetPrototype);
46
-        $table                = new SettingsTable($tableGateway);
45
+        $tableGateway = new TableGateway('settings', $dbAdapter, null, $resultSetPrototype);
46
+        $table = new SettingsTable($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/Model/Applications.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@
 block discarded – undo
42 42
     
43 43
     public function exchangeArray($data)
44 44
     {
45
-        $this->application_id    = (isset($data['application_id'])) ? $data['application_id'] : $this->application_id;
45
+        $this->application_id = (isset($data['application_id'])) ? $data['application_id'] : $this->application_id;
46 46
         $this->name                = (isset($data['name'])) ? $data['name'] : $this->name;
47 47
         $this->shortname        = (isset($data['shortname'])) ? $data['shortname'] : $this->shortname;
48 48
         $this->path                = (isset($data['path'])) ? $data['path'] : $this->path;
49
-        $this->url                = (isset($data['url'])) ? $data['url'] : $this->url;
49
+        $this->url = (isset($data['url'])) ? $data['url'] : $this->url;
50 50
         $this->email            = (isset($data['email'])) ? $data['email'] : $this->email;
51 51
         $this->client_id        = (isset($data['client_id'])) ? $data['client_id'] : $this->client_id;
52 52
     }
Please login to merge, or discard this patch.