@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @var array |
34 | 34 | */ |
35 | - protected $aAcceptEncoding = []; |
|
35 | + protected $aAcceptEncoding = []; |
|
36 | 36 | /** |
37 | 37 | * @var array |
38 | 38 | */ |
39 | - protected $aAcceptLanguage = []; |
|
39 | + protected $aAcceptLanguage = []; |
|
40 | 40 | /** |
41 | 41 | * @var string |
42 | 42 | */ |
@@ -52,11 +52,11 @@ discard block |
||
52 | 52 | /** |
53 | 53 | * @var string |
54 | 54 | */ |
55 | - protected $sIfNoneMatch = ''; |
|
55 | + protected $sIfNoneMatch = ''; |
|
56 | 56 | /** |
57 | 57 | * @var string |
58 | 58 | */ |
59 | - protected $sContentType = ''; |
|
59 | + protected $sContentType = ''; |
|
60 | 60 | /** |
61 | 61 | * @var bool |
62 | 62 | */ |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage requests |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 09.07.13 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage requests |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 09.07.13 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\requests; |
9 | 9 | |
10 | 10 | use vsc\infrastructure\Object; |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage requests |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 21.02.15 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage requests |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 21.02.15 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\requests; |
9 | 9 | |
10 | 10 | trait GetRequestTrait { |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage helpers |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 13.01.02 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage helpers |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 13.01.02 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\helpers; |
9 | 9 | |
10 | 10 | use vsc\domain\models\ModelA; |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage views |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 09.08.30 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage views |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 09.08.30 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\views; |
9 | 9 | |
10 | 10 | use vsc\application\sitemaps\ClassMap; |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage views |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 2010.04.09 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage views |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 2010.04.09 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\views; |
9 | 9 | |
10 | 10 | interface JsonViewInterface { |
@@ -1,8 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @author Marius Orcsik <[email protected]> |
|
4 | - * @created 2015-07-28 |
|
5 | - */ |
|
3 | + * @author Marius Orcsik <[email protected]> |
|
4 | + * @created 2015-07-28 |
|
5 | + */ |
|
6 | 6 | namespace vsc\presentation\responses; |
7 | 7 | |
8 | 8 | use vsc\infrastructure\vsc; |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | /** |
97 | 97 | * @return bool |
98 | 98 | */ |
99 | - public function outputStatusHeader () { |
|
99 | + public function outputStatusHeader() { |
|
100 | 100 | if (vsc::isCli()) { return false; } |
101 | 101 | if ($this->getStatus()) { |
102 | 102 | header(HttpResponseA::getHttpStatusString($this->getServerProtocol(), $this->getStatus())); |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | /** |
186 | 186 | * @return bool |
187 | 187 | */ |
188 | - protected function outputCustomHeaders () { |
|
188 | + protected function outputCustomHeaders() { |
|
189 | 189 | if (vsc::isCli()) { return false; } |
190 | 190 | $aHeaders = $this->getCustomHeaders(); |
191 | 191 | if (is_array($aHeaders)) { |
@@ -12,6 +12,6 @@ |
||
12 | 12 | } |
13 | 13 | |
14 | 14 | public function getChallenge() { |
15 | - return 'Digest realm="'.$this->sRealm.'",qop="auth",nonce="'.$this->sNonce.'",opaque="'.md5($this->sRealm).'"'; |
|
15 | + return 'Digest realm="' . $this->sRealm . '",qop="auth",nonce="' . $this->sNonce . '",opaque="' . md5($this->sRealm) . '"'; |
|
16 | 16 | } |
17 | 17 | } |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * @package presentation |
|
4 | - * @subpackage responses |
|
5 | - * @author marius orcsik <[email protected]> |
|
6 | - * @date 2013.09.26 |
|
7 | - */ |
|
3 | + * @package presentation |
|
4 | + * @subpackage responses |
|
5 | + * @author marius orcsik <[email protected]> |
|
6 | + * @date 2013.09.26 |
|
7 | + */ |
|
8 | 8 | namespace vsc\presentation\responses; |
9 | 9 | |
10 | 10 | use vsc\infrastructure\Base; |