Test Failed
Push — master ( 5520e1...8c9c94 )
by Björn
28:23 queued 23:07
created
module/Admin/src/Admin/Controller/ApplicationsController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -23,15 +23,15 @@
 block discarded – undo
23 23
 class ApplicationsController extends BaseActionController
24 24
 {
25 25
 	
26
-	/**
27
-	 * @var array|\Admin\Model\ClientsTable
28
-	 */
29
-	protected $clientsTable;
26
+    /**
27
+     * @var array|\Admin\Model\ClientsTable
28
+     */
29
+    protected $clientsTable;
30 30
 	
31
-	/**
32
-	 * @var array|\Admin\Model\ApplicationsTable
33
-	 */
34
-	protected $applicationsTable;
31
+    /**
32
+     * @var array|\Admin\Model\ApplicationsTable
33
+     */
34
+    protected $applicationsTable;
35 35
     
36 36
     /**
37 37
      * initialize titles and toolbar items
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/IndexController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * redirect to acl section
25 25
      * @return mixed|\Zend\Http\Response|\Zend\View\Model\ViewModel
26 26
      */
27
-	public function indexAction()
27
+    public function indexAction()
28 28
     {
29 29
         return $this->redirect()->toRoute('admin/acledit', array());
30 30
     }
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/ZfcuserController.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
  */
47 47
 class ZfcuserController extends UserController
48 48
 {
49
-	use ControllerTranslatorTrait;
50
-	use ControllerActiontitlesTrait;
51
-	use ControllerToolbarTrait;
49
+    use ControllerTranslatorTrait;
50
+    use ControllerActiontitlesTrait;
51
+    use ControllerToolbarTrait;
52 52
 	
53 53
     /**
54 54
      * 
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             // ...redirect to the login redirect route
211 211
             return $this->redirect()->toRoute('zfcuser/login'); //$this->getOptions()->getLoginRedirectRoute());
212 212
         }
213
-    	$oIdentity = $this->zfcUserAuthentication()->getIdentity();
213
+        $oIdentity = $this->zfcUserAuthentication()->getIdentity();
214 214
         $oProfile = new \Admin\Model\UserProfile();
215 215
         $oProfile->load($oIdentity->getId());
216 216
         
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
             $sm = $this->getServiceLocator();
767 767
             $this->userTable = $sm->get('Admin\Model\UserTable');
768 768
             if (!$this->userTable instanceof \Admin\Model\UserTable) {
769
-            	throw new \Exception("invalid user table object: ".gettype($this->userTable));
769
+                throw new \Exception("invalid user table object: ".gettype($this->userTable));
770 770
             }
771 771
         }
772 772
         return $this->userTable;
@@ -784,7 +784,7 @@  discard block
 block discarded – undo
784 784
             $sm = $this->getServiceLocator();
785 785
             $this->aclroleTable = $sm->get('Admin\Model\AclroleTable');
786 786
             if (!$this->aclroleTable instanceof \Admin\Model\AclroleTable) {
787
-            	throw new \Exception("invalid ACL role table object: ".gettype($this->aclroleTable));
787
+                throw new \Exception("invalid ACL role table object: ".gettype($this->aclroleTable));
788 788
             }
789 789
         }
790 790
         return $this->aclroleTable;
@@ -798,7 +798,7 @@  discard block
 block discarded – undo
798 798
      */
799 799
     public function getOptions()
800 800
     {
801
-    	return \Application\Module::getService('zfcuser_module_options');
801
+        return \Application\Module::getService('zfcuser_module_options');
802 802
     } 
803 803
     
804 804
 }
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/ClientsController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@
 block discarded – undo
23 23
 class ClientsController extends BaseActionController
24 24
 {
25 25
 	
26
-	/**
27
-	 * @var array|\Admin\Model\ClientsTable
28
-	 */
29
-	protected $clientsTable;
26
+    /**
27
+     * @var array|\Admin\Model\ClientsTable
28
+     */
29
+    protected $clientsTable;
30 30
     
31 31
     /**
32 32
      * initialize titles and toolbar items
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/SettingsController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,9 +23,9 @@
 block discarded – undo
23 23
 class SettingsController extends BaseActionController
24 24
 {
25 25
 	
26
-	/**
27
-	 * @var array|\Admin\Model\SettingsTable
28
-	 */
26
+    /**
27
+     * @var array|\Admin\Model\SettingsTable
28
+     */
29 29
     protected $settingsTable;
30 30
     
31 31
     /**
Please login to merge, or discard this patch.
module/Admin/src/Admin/Form/UserProfileForm.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -82,11 +82,11 @@
 block discarded – undo
82 82
             array(
83 83
             'name' => 'facebook',
84 84
             'attributes' => array(
85
-                   'type'  => 'url',
86
-               ),
87
-               'options' => array(
88
-                   'label' => 'Facebook',
89
-               ),
85
+                    'type'  => 'url',
86
+                ),
87
+                'options' => array(
88
+                    'label' => 'Facebook',
89
+                ),
90 90
             )
91 91
         );
92 92
         $this->add(
Please login to merge, or discard this patch.
module/Admin/src/Admin/Form/AclroleForm.php 1 patch
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.
module/Admin/src/Admin/Model/Applications.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@
 block discarded – undo
215 215
     public function getClient() 
216 216
     {
217 217
         /**
218
- * @var \Admin\Model\ClientsTable $clients 
218
+         * @var \Admin\Model\ClientsTable $clients 
219 219
 */
220 220
         if ($this->client_id) {
221 221
             $clients = \Application\Module::getService('AdminClientsTable');
Please login to merge, or discard this patch.
module/Admin/src/Admin/Model/User.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     
48 48
     /**
49 49
      * set user's object property data
50
-  *
50
+     *
51 51
      * @param  array   $data
52 52
      * @param  boolean $forceEncryptPassword
53 53
      * @return \Admin\Entity\User
Please login to merge, or discard this patch.