@@ -55,7 +55,7 @@ |
||
55 | 55 | */ |
56 | 56 | public function __toString() |
57 | 57 | { |
58 | - return (string)print_r(self::$instance, true); |
|
58 | + return (string) print_r(self::$instance, true); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function __toString() |
37 | 37 | { |
38 | - return (string)$this->filteredString; |
|
38 | + return (string) $this->filteredString; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -43,7 +43,7 @@ |
||
43 | 43 | { |
44 | 44 | if (!isset($this->set->{$imageVariant})) { |
45 | 45 | throw new \Exception('Image variant `' . $imageVariant . '` does not exist. Existing variants are ' . implode(', ', |
46 | - array_keys((array)$this->set))); |
|
46 | + array_keys((array) $this->set))); |
|
47 | 47 | } |
48 | 48 | return Request::$subfolders . $this->imagePath . '/' . $this->set->{$imageVariant}; |
49 | 49 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | public function __construct($template = '', Request $request, $parameters = array(), $matchedSitemapItem) |
26 | 26 | { |
27 | - $this->parameters = (array)$matchedSitemapItem->parameters; |
|
27 | + $this->parameters = (array) $matchedSitemapItem->parameters; |
|
28 | 28 | $selfParameters = $this->getParametersForNameSpace('self'); |
29 | 29 | $this->parameters = array_merge($this->parameters, $selfParameters); |
30 | 30 | parent::__construct($template, $request, $this->parameters, $matchedSitemapItem); |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function __construct($template, Request $request, $parameters, $matchedSitemapItem) |
41 | 41 | { |
42 | - $this->parameters = (array)$parameters; |
|
42 | + $this->parameters = (array) $parameters; |
|
43 | 43 | $this->checkParameters(); |
44 | 44 | |
45 | 45 | $lang = substr(isset($_SERVER[self::HTTP_ACCEPT_LANGUAGE]) ? $_SERVER[self::HTTP_ACCEPT_LANGUAGE] : self::$DEFAULT_LANGUAGE, |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | unset($this->parameters[self::PARAMETER_LANGUAGE_PARAMETER_NAME]); |
79 | 79 | } |
80 | 80 | if (isset($this->parameters[self::PARAMETER_FORCE_REDIRECT])) { |
81 | - $this->forceRedirect = (bool)$this->parameters[self::PARAMETER_FORCE_REDIRECT]; |
|
81 | + $this->forceRedirect = (bool) $this->parameters[self::PARAMETER_FORCE_REDIRECT]; |
|
82 | 82 | unset($this->parameters[self::PARAMETER_FORCE_REDIRECT]); |
83 | 83 | } |
84 | 84 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | $cacheExists = $this->cache !== false; |
99 | 99 | $cacheExpired = false; |
100 | 100 | if ($cacheExists) { |
101 | - $cacheCreationStamp = (int)$this->cache->creationStamp; |
|
101 | + $cacheCreationStamp = (int) $this->cache->creationStamp; |
|
102 | 102 | $currentTime = time(); |
103 | 103 | $cacheAge = $currentTime - $cacheCreationStamp; |
104 | 104 | $maxAgeInterval = new \DateInterval($this->maxAge); |
@@ -47,7 +47,7 @@ |
||
47 | 47 | if (preg_match('/\.(?:js|ico|txt|gif|jpg|jpeg|png|bmp|css|html|htm|php|pdf|exe|eot|svg|ttf|woff|ogg|mp3|xml|map|scss)$/', |
48 | 48 | $_SERVER['REQUEST_URI'])) { |
49 | 49 | if (file_exists($dir . $_SERVER["REQUEST_URI"])) { |
50 | - return true; // serve the requested resource as-is. |
|
50 | + return true; // serve the requested resource as-is. |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function SetTransparency($transparency) |
39 | 39 | { |
40 | - $this->_transparency = (int)$transparency; |
|
40 | + $this->_transparency = (int) $transparency; |
|
41 | 41 | return $this; |
42 | 42 | } |
43 | 43 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | */ |
65 | 65 | protected function calculateX($imageResource) |
66 | 66 | { |
67 | - if ((int)$this->_x === $this->_x) { |
|
67 | + if ((int) $this->_x === $this->_x) { |
|
68 | 68 | return $this->_x; |
69 | 69 | } |
70 | 70 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | } elseif ($x == 'right') { |
81 | 81 | $x = $imageWidth - $watermarkWidth; |
82 | 82 | } |
83 | - return (int)$x; |
|
83 | + return (int) $x; |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function calculateY($imageResource) |
94 | 94 | { |
95 | - if ((int)$this->_y === $this->_y) { |
|
95 | + if ((int) $this->_y === $this->_y) { |
|
96 | 96 | return $this->_y; |
97 | 97 | } |
98 | 98 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | } elseif ($y == 'bottom') { |
109 | 109 | $y = $imageHeight - $watermarkHeight; |
110 | 110 | } |
111 | - return (int)$y; |
|
111 | + return (int) $y; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |