Completed
Push — master ( 4a6871...7314b0 )
by Flo
03:21
created
src/Form/Type/AbstractType.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -302,7 +302,7 @@
 block discarded – undo
302 302
     }
303 303
 
304 304
     /**
305
-     * @param $type
305
+     * @param string $type
306 306
      * @return bool
307 307
      */
308 308
     private function translateType($type)
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 use Faulancer\Service\SessionManagerService;
14 14
 use Faulancer\ServiceLocator\ServiceLocator;
15 15
 use Faulancer\Form\Validator\ValidatorChain;
16
-use Faulancer\ServiceLocator\ServiceLocatorAwareInterface;
17 16
 use Faulancer\ServiceLocator\ServiceLocatorInterface;
18 17
 use Faulancer\Session\SessionManager;
19 18
 
Please login to merge, or discard this patch.
src/Service/AuthenticatorService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * @param array $roles
114
-     * @return bool
114
+     * @return null|boolean
115 115
      */
116 116
     public function isPermitted(array $roles)
117 117
     {
Please login to merge, or discard this patch.
src/Mail/Mailer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         $headers .= 'Content-Type: multipart/mixed; charset=UTF-8; boundary=' . $boundary . $eol;
189 189
 
190 190
         if (!empty($this->from)) {
191
-            $headers .= 'From: ' .$this->from . $eol;
191
+            $headers .= 'From: ' . $this->from . $eol;
192 192
         }
193 193
 
194 194
         if (!empty($this->replyTo)) {
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                 }
247 247
 
248 248
                 $body .= 'Content-Transfer-Encoding: base64' . $eol;
249
-                $body .= 'X-Attachment-Id: ' . rand(1000,99999) . $eol . $eol;
249
+                $body .= 'X-Attachment-Id: ' . rand(1000, 99999) . $eol . $eol;
250 250
                 $body .= $encodedContent . $eol;
251 251
 
252 252
             }
Please login to merge, or discard this patch.
src/View/Helper/AssetList.php 1 patch
Switch Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 block discarded – undo
37 37
 
38 38
         switch ($type) {
39 39
 
40
-        case 'js':
41
-            $pattern = '<script src="%s"></script>';
42
-            break;
40
+            case 'js':
41
+                $pattern = '<script src="%s"></script>';
42
+                break;
43 43
 
44
-        case 'css':
45
-            $pattern = '<link rel="stylesheet" type="text/css" href="%s">';
46
-            break;
44
+            case 'css':
45
+                $pattern = '<link rel="stylesheet" type="text/css" href="%s">';
46
+                break;
47 47
 
48 48
         }
49 49
 
Please login to merge, or discard this patch.
src/Controller/ErrorController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
             'line'    => $this->_exception->getLine()
81 81
         ];
82 82
 
83
-        $trace  = $this->_exception->getTrace();
83
+        $trace = $this->_exception->getTrace();
84 84
 
85 85
         if (isset($trace[0]['line']) && $trace[0]['line'] !== $raiser['line']) {
86 86
             array_unshift($trace, $raiser);
Please login to merge, or discard this patch.
src/View/ViewController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
      */
157 157
     public function getVariable(string $key)
158 158
     {
159
-        if(isset($this->variable[$key])) {
159
+        if (isset($this->variable[$key])) {
160 160
             return $this->variable[$key];
161 161
         }
162 162
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
      */
172 172
     public function hasVariable(string $key) :bool
173 173
     {
174
-        if(isset($this->variable[$key])) {
174
+        if (isset($this->variable[$key])) {
175 175
             return true;
176 176
         }
177 177
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      */
187 187
     public function setVariables(array $variables = []) :self
188 188
     {
189
-        foreach($variables AS $key=>$value) {
189
+        foreach ($variables AS $key=>$value) {
190 190
             $this->setVariable($key, $value);
191 191
         }
192 192
 
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      */
273 273
     public function __call($name, $arguments)
274 274
     {
275
-        $coreViewHelper   = __NAMESPACE__ . '\Helper\\' . ucfirst($name);
275
+        $coreViewHelper = __NAMESPACE__ . '\Helper\\' . ucfirst($name);
276 276
 
277 277
         if (!empty($this->viewHelpers[$coreViewHelper])) {
278 278
             return $this->_callUserFuncArray($this->viewHelpers[$coreViewHelper], $arguments);
@@ -325,8 +325,8 @@  discard block
 block discarded – undo
325 325
      */
326 326
     public function __destruct()
327 327
     {
328
-        unset( $this->variable );
329
-        unset( $this->template );
328
+        unset($this->variable);
329
+        unset($this->template);
330 330
     }
331 331
 
332 332
 }
333 333
\ No newline at end of file
Please login to merge, or discard this patch.
src/Http/Adapter/Socket.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,13 +43,13 @@
 block discarded – undo
43 43
         $req .= 'Content-Length: ' . strlen($requestBody) . "\r\n";
44 44
         $req .= 'Connection: close' . "\r\n\r\n";
45 45
 
46
-        $socket = stream_socket_client($protocol . $url . ':' . $port,$err, $errstr, 60, STREAM_CLIENT_CONNECT);
46
+        $socket = stream_socket_client($protocol . $url . ':' . $port, $err, $errstr, 60, STREAM_CLIENT_CONNECT);
47 47
 
48 48
         fputs($socket, $req);
49 49
 
50 50
         $res = '';
51 51
 
52
-        while(!feof($socket)) { $res .= fgets($socket, 128); }
52
+        while (!feof($socket)) { $res .= fgets($socket, 128); }
53 53
         fclose($socket);
54 54
 
55 55
         $this->response = $res;
Please login to merge, or discard this patch.
src/View/Helper/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 
68 68
         }
69 69
 
70
-        $path = str_replace('//' , '/', $path);
70
+        $path = str_replace('//', '/', $path);
71 71
 
72 72
         if ($absolute) {
73 73
 
Please login to merge, or discard this patch.
src/Http/XmlResponse.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @param $dom
31 31
      * @param $data
32
-     * @return bool|\DOMElement
32
+     * @return \DOMNode
33 33
      */
34 34
     private function generateXmlElement(\DOMDocument $dom, $data )
35 35
     {
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      *
18 18
      * @param array $content
19 19
      */
20
-    public function __construct ($content = [])
20
+    public function __construct($content = [])
21 21
     {
22 22
         parent::__construct($content);
23 23
         $this->setContent($content);
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param $data
32 32
      * @return bool|\DOMElement
33 33
      */
34
-    private function generateXmlElement(\DOMDocument $dom, $data )
34
+    private function generateXmlElement(\DOMDocument $dom, $data)
35 35
     {
36 36
         if (empty($data['name'])) {
37 37
             return false;
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         $doc->encoding   = 'UTF-8';
83 83
         $child = $this->generateXmlElement($doc, $content);
84 84
 
85
-        if ( $child ) {
85
+        if ($child) {
86 86
             $doc->appendChild($child);
87 87
         }
88 88
 
Please login to merge, or discard this patch.