Test Failed
Push — master ( b381e6...5958d3 )
by Björn
02:48 queued 12s
created
module/UIComponents/src/UIComponents/View/Helper/Utilities/Framework.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -72,23 +72,23 @@
 block discarded – undo
72 72
         return $collection;
73 73
     }
74 74
     
75
-	/**
76
-	 * retrieve UI framework id/name
77
-	 * @return string the $framework
78
-	 */
79
-	public function getFramework() {
80
-		return $this->framework;
81
-	}
75
+    /**
76
+     * retrieve UI framework id/name
77
+     * @return string the $framework
78
+     */
79
+    public function getFramework() {
80
+        return $this->framework;
81
+    }
82 82
 
83
-	/**
84
-	 * set UI framework id/name
85
-	 * @param string $framework
86
-	 * @return \UIComponents\View\Helper\Utilities\Framework
87
-	 */
88
-	public function setFramework($framework) {
89
-		$this->framework = $framework;
90
-		return $this;
91
-	}
83
+    /**
84
+     * set UI framework id/name
85
+     * @param string $framework
86
+     * @return \UIComponents\View\Helper\Utilities\Framework
87
+     */
88
+    public function setFramework($framework) {
89
+        $this->framework = $framework;
90
+        return $this;
91
+    }
92 92
 
93 93
     
94 94
     
Please login to merge, or discard this patch.
UIComponents/src/UIComponents/Framework/ClassnameCollectionAbstract.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -21,14 +21,14 @@  discard block
 block discarded – undo
21 21
  */
22 22
 abstract class ClassnameCollectionAbstract {
23 23
 	
24
-	/** @var  string  $framework  framework names, these classnames are related to */
25
-	public $framework = "Bootstrap";
24
+    /** @var  string  $framework  framework names, these classnames are related to */
25
+    public $framework = "Bootstrap";
26 26
 	
27
-	/** @var  string  $version  framework version, these classnames are related to */
28
-	public $version = "3.3.0";
27
+    /** @var  string  $version  framework version, these classnames are related to */
28
+    public $version = "3.3.0";
29 29
 	
30
-	/** @var  array  $size  generic sizes */
31
-	public $size = array(
30
+    /** @var  array  $size  generic sizes */
31
+    public $size = array(
32 32
         "xs"    => "xs",
33 33
         "s"     => "s",
34 34
         "m"     => "m",
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
         "xl"    => "xl",
37 37
     );
38 38
     
39
-	/** @var  array  $column  generic column classname */
39
+    /** @var  array  $column  generic column classname */
40 40
     public $column = "columns";
41
-	/** @var  array  $columnsize  column sizes classnames*/
41
+    /** @var  array  $columnsize  column sizes classnames*/
42 42
     public $columnsize = array(
43 43
         "xs"    => "col-xs-",
44 44
         "s"     => "col-s-",
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         "xl"    => "col-xl-",
48 48
     );
49 49
     
50
-	/** @var  array  $status  status related classnames */
50
+    /** @var  array  $status  status related classnames */
51 51
     public $status = array(
52 52
         "default"    => "default",
53 53
         "info"       => "info",
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         "error"      => "error",
58 58
     );
59 59
     
60
-	/** @var  array  $panel  panel related classnames */
60
+    /** @var  array  $panel  panel related classnames */
61 61
     public $panel = array(
62 62
         "prefix"     => "panel-",
63 63
         "wrapper"    => "panel",
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         "footer"     => "panel-footer",
67 67
     );
68 68
     
69
-	/** @var  array  $control  control related classnames */
69
+    /** @var  array  $control  control related classnames */
70 70
     public $control = array(
71 71
         "button" => array(
72 72
             "prefix"    => "btn-",
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
         ),
78 78
     );
79 79
     
80
-	/** @var  array  $form  form generation related classnames */
80
+    /** @var  array  $form  form generation related classnames */
81 81
     public $form = array(
82 82
         "formgroup" => array(
83 83
             "wrapper"    => "form-group",
84 84
         ),
85 85
     );
86 86
     
87
-	/** @var  array  $table  table related classnames */
87
+    /** @var  array  $table  table related classnames */
88 88
     public $table = array(
89 89
     );
90 90
     
91
-	/** @var  array  $widget  widgets' classnames */
91
+    /** @var  array  $widget  widgets' classnames */
92 92
     public $widget = array(
93 93
         "navigation" => array(
94 94
             "wrapper" => "navbar navbar-inverse",
@@ -113,12 +113,12 @@  discard block
 block discarded – undo
113 113
         ),
114 114
     );
115 115
     
116
-   	/**
117
-	 * create classname collection object
118
-	 * @see \Zend\Config\Config
119
-	 */
120
-	public function __contruct() {
121
-	    return new \Zend\Config\Config( get_object_vars($this) );
122
-	}
116
+        /**
117
+         * create classname collection object
118
+         * @see \Zend\Config\Config
119
+         */
120
+    public function __contruct() {
121
+        return new \Zend\Config\Config( get_object_vars($this) );
122
+    }
123 123
 		
124 124
 }
Please login to merge, or discard this patch.
module/UIComponents/src/UIComponents/Framework/Bootstrap3.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Bootstrap3 extends ClassnameCollectionAbstract {
23 23
 	
24
-	/** @var  string  $framework  framework names, these classnames are related to */
25
-	public $framework = "Bootstrap";
24
+    /** @var  string  $framework  framework names, these classnames are related to */
25
+    public $framework = "Bootstrap";
26 26
 	
27
-	/** @var  string  $version  framework version, these classnames are related to */
28
-	public $version = "3.3.0";
27
+    /** @var  string  $version  framework version, these classnames are related to */
28
+    public $version = "3.3.0";
29 29
 	
30
-	/** @var  array  $size  generic sizes */
30
+    /** @var  array  $size  generic sizes */
31 31
     public $size = array(
32 32
         "xs"    => "xs",
33 33
         "s"     => "s",
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
         "xl"    => "xl",
37 37
     );
38 38
     
39
-	/** @var  array  $column  generic column classname */
39
+    /** @var  array  $column  generic column classname */
40 40
     public $column = "columns";
41
-	/** @var  array  $columnsize  column sizes classnames*/
41
+    /** @var  array  $columnsize  column sizes classnames*/
42 42
     public $columnsize = array(
43 43
         "xs"    => "col-xs-",
44 44
         "s"     => "col-s-",
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         "xl"    => "col-xl-",
48 48
     );
49 49
     
50
-	/** @var  array  $status  status related classnames */
50
+    /** @var  array  $status  status related classnames */
51 51
     public $status = array(
52 52
         "default"    => "default",
53 53
         "info"       => "info",
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         "error"      => "error",
58 58
     );
59 59
     
60
-	/** @var  array  $panel  panel related classnames */
60
+    /** @var  array  $panel  panel related classnames */
61 61
     public $panel = array(
62 62
         "prefix"     => "panel-",
63 63
         "wrapper"    => "panel",
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         "footer"     => "panel-footer",
67 67
     );
68 68
     
69
-	/** @var  array  $control  control related classnames */
69
+    /** @var  array  $control  control related classnames */
70 70
     public $control = array(
71 71
         "button" => array(
72 72
             "prefix"    => "btn-",
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
         ),
78 78
     );
79 79
     
80
-	/** @var  array  $form  form generation related classnames */
80
+    /** @var  array  $form  form generation related classnames */
81 81
     public $form = array(
82 82
         "formgroup" => array(
83 83
             "wrapper"    => "form-group",
84 84
         ),
85 85
     );
86 86
     
87
-	/** @var  array  $table  table related classnames */
87
+    /** @var  array  $table  table related classnames */
88 88
     public $table = array(
89 89
     );
90 90
     
91
-	/** @var  array  $widget  widgets' classnames */
91
+    /** @var  array  $widget  widgets' classnames */
92 92
     public $widget = array(
93 93
         "navigation" => array(
94 94
             "wrapper" => "navbar navbar-inverse",
Please login to merge, or discard this patch.
module/UIComponents/src/UIComponents/Framework/Foundation6.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
  */
22 22
 class Foundation6 extends ClassnameCollectionAbstract {
23 23
 	
24
-	/** @var  string  $framework  framework names, these classnames are related to */
25
-	public $framework = "Foundation";
24
+    /** @var  string  $framework  framework names, these classnames are related to */
25
+    public $framework = "Foundation";
26 26
 	
27
-	/** @var  string  $version  framework version, these classnames are related to */
28
-	public $version = "6.1.2";
27
+    /** @var  string  $version  framework version, these classnames are related to */
28
+    public $version = "6.1.2";
29 29
 	
30
-	/** @var  array  $size  generic sizes */
30
+    /** @var  array  $size  generic sizes */
31 31
     public $size = array(
32 32
         "xs"    => "tiny",
33 33
         "s"     => "small",
@@ -36,9 +36,9 @@  discard block
 block discarded – undo
36 36
         "xl"    => "xlarge",
37 37
     );
38 38
     
39
-	/** @var  array  $column  generic column classname */
39
+    /** @var  array  $column  generic column classname */
40 40
     public $column = "columns";
41
-	/** @var  array  $columnsize  column sizes classnames*/
41
+    /** @var  array  $columnsize  column sizes classnames*/
42 42
     public $columnsize = array(
43 43
         "xs"    => "tiny-",
44 44
         "s"     => "small-",
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         "xl"    => "xlargel-",
48 48
     );
49 49
     
50
-	/** @var  array  $status  status related classnames */
50
+    /** @var  array  $status  status related classnames */
51 51
     public $status = array(
52 52
         "default"    => "",
53 53
         "info"       => "info",
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         "error"      => "alert",
58 58
     );
59 59
     
60
-	/** @var  array  $panel  panel related classnames */
60
+    /** @var  array  $panel  panel related classnames */
61 61
     public $panel = array(
62 62
         "prefix"     => "panel-",
63 63
         "wrapper"    => "panel",
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         "footer"     => "panel-footer",
67 67
     );
68 68
     
69
-	/** @var  array  $control  control related classnames */
69
+    /** @var  array  $control  control related classnames */
70 70
     public $control = array(
71 71
         "button" => array(
72 72
             "prefix"     => "button-",
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
         ),
78 78
     );
79 79
     
80
-	/** @var  array  $form  form generation related classnames */
80
+    /** @var  array  $form  form generation related classnames */
81 81
     public $form = array(
82 82
         "formgroup" => array(
83 83
             "wrapper"    => "form-group",
84 84
         ),
85 85
     );
86 86
     
87
-	/** @var  array  $table  table related classnames */
87
+    /** @var  array  $table  table related classnames */
88 88
     public $table = array(
89 89
     );
90 90
     
91
-	/** @var  array  $widget  widgets' classnames */
91
+    /** @var  array  $widget  widgets' classnames */
92 92
     public $widget = array(
93 93
         "navigation" => array(
94 94
             "wrapper" => "top-bar",
Please login to merge, or discard this patch.
module/Admin/src/Admin/Entity/User.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -23,21 +23,21 @@  discard block
 block discarded – undo
23 23
     
24 24
     /**
25 25
      * user's confirmation/activation token
26
-  *
26
+     *
27 27
      * @var string
28 28
      */
29 29
     protected $token;
30 30
 
31 31
     /**
32 32
      * user's ACL role
33
-  *
33
+     *
34 34
      * @var string
35 35
      */
36 36
     protected $aclrole;
37 37
 
38 38
     /**
39 39
      * user's ID
40
-  *
40
+     *
41 41
      * @var int
42 42
      */
43 43
     protected $user_id;
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     
119 119
     /**
120 120
      * set user's object property data
121
-  *
121
+     *
122 122
      * @param  array   $data
123 123
      * @param  boolean $forceEncryptPassword
124 124
      * @return \Admin\Entity\User
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     
157 157
     /**
158 158
      * get copy of user's object properties in an assosiative array
159
-  *
159
+     *
160 160
      * @return array
161 161
      */
162 162
     public function __getArrayCopy()
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
     
178 178
     /**
179 179
      * get copy of user's object properties in an assosiative array
180
-  *
180
+     *
181 181
      * @return array
182 182
      * /
183 183
     public function getArrayCopy() 
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/RedirectCallback.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,6 +144,5 @@
 block discarded – undo
144 144
             return $this->router->assemble(array(), array('name' => 'zfcuser'));
145 145
         }
146 146
     } 
147
-    
148
-    */
147
+     */
149 148
 }
Please login to merge, or discard this patch.
module/Admin/src/Admin/Controller/AclController.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -32,20 +32,20 @@  discard block
 block discarded – undo
32 32
 class AclController extends BaseActionController
33 33
 {
34 34
 	
35
-	/**
36
-	 * @var array|\Admin\Model\AclTable
37
-	 */
38
-	protected $AclTable;
35
+    /**
36
+     * @var array|\Admin\Model\AclTable
37
+     */
38
+    protected $AclTable;
39 39
 	
40
-	/**
41
-	 * @var array|\Admin\Model\AclroleTable
42
-	 */
43
-	protected $AclroleTable;
40
+    /**
41
+     * @var array|\Admin\Model\AclroleTable
42
+     */
43
+    protected $AclroleTable;
44 44
 	
45
-	/**
46
-	 * @var array|\Admin\Model\AclresourceTable
47
-	 */
48
-	protected $AclresourceTable;
45
+    /**
46
+     * @var array|\Admin\Model\AclresourceTable
47
+     */
48
+    protected $AclresourceTable;
49 49
 
50 50
     /**
51 51
      * initialize titles and toolbar items
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
                         'action' => 'roles',
97 97
                         'resource' => 'mvc:user',
98 98
                     ),
99
-                  ),
100
-               "roles" => array(
99
+                    ),
100
+                "roles" => array(
101 101
                     array(
102 102
                         'label' => 'add role',
103 103
                         'icon' => 'plus',
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
                         'action' => 'resources',
128 128
                         'resource' => 'mvc:user',
129 129
                     ),
130
-               ),
131
-               "resources" => array(
130
+                ),
131
+                "resources" => array(
132 132
                     array(
133 133
                         'label' => 'add resource',
134 134
                         'icon' => 'plus',
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                         'action' => 'roles',
159 159
                         'resource' => 'mvc:user',
160 160
                     ),
161
-               ),
161
+                ),
162 162
             )
163 163
         );
164 164
         $this->setActionTitles(
Please login to merge, or discard this patch.
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.