@@ -13,7 +13,6 @@ |
||
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 |
@@ -295,7 +295,7 @@ |
||
295 | 295 | } |
296 | 296 | |
297 | 297 | if (empty($this->getType()) && !empty($this->definition['type'])) { |
298 | - $this->setType($this->definition['type']); |
|
298 | + $this->setType($this->definition['type']); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | if (empty($this->getValue()) && !empty($this->definition['value'])) { |
@@ -111,7 +111,7 @@ |
||
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 | { |
@@ -188,7 +188,7 @@ discard block |
||
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 |
||
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 | } |
@@ -37,13 +37,13 @@ |
||
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 |
@@ -80,7 +80,7 @@ |
||
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); |
@@ -67,7 +67,7 @@ |
||
67 | 67 | |
68 | 68 | } |
69 | 69 | |
70 | - $path = str_replace('//' , '/', $path); |
|
70 | + $path = str_replace('//', '/', $path); |
|
71 | 71 | |
72 | 72 | if ($absolute) { |
73 | 73 |
@@ -29,7 +29,7 @@ |
||
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 | { |
@@ -17,7 +17,7 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -25,7 +25,7 @@ |
||
25 | 25 | $message |
26 | 26 | ]; |
27 | 27 | |
28 | - $messageString = implode(' | ', $columns) . "\r\n"; |
|
28 | + $messageString = implode(' | ', $columns) . "\r\n"; |
|
29 | 29 | |
30 | 30 | return file_put_contents($logfile, $messageString, FILE_APPEND); |
31 | 31 | } |
@@ -60,7 +60,7 @@ |
||
60 | 60 | * |
61 | 61 | * @param AbstractEvent $event |
62 | 62 | * |
63 | - * @return bool |
|
63 | + * @return false|null |
|
64 | 64 | */ |
65 | 65 | public function trigger(AbstractEvent $event) |
66 | 66 | { |