@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
71 | - * @param $request |
|
71 | + * @param Request $request |
|
72 | 72 | * @param CmsComponent $cmsComponent |
73 | 73 | */ |
74 | 74 | private function newRoute($request, $cmsComponent) |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
86 | - * @param $request |
|
86 | + * @param Request $request |
|
87 | 87 | * @param CmsComponent $cmsComponent |
88 | 88 | */ |
89 | 89 | private function deleteRoute($request, $cmsComponent) |
@@ -40,20 +40,20 @@ discard block |
||
40 | 40 | { |
41 | 41 | $file = $cmsComponent->storage->getFiles()->getFileByName($slug); |
42 | 42 | $path = realpath($cmsComponent->storage->getFiles()->getFilesDir()); |
43 | - $quoted = sprintf('"%s"', addcslashes(basename($path . '/' . $file->file), '"\\')); |
|
44 | - $size = filesize($path . '/' . $file->file); |
|
43 | + $quoted = sprintf('"%s"', addcslashes(basename($path.'/'.$file->file), '"\\')); |
|
44 | + $size = filesize($path.'/'.$file->file); |
|
45 | 45 | |
46 | 46 | header('Content-Description: File Transfer'); |
47 | - header('Content-Type: ' . $file->type); |
|
48 | - header('Content-Disposition: attachment; filename=' . $quoted); |
|
47 | + header('Content-Type: '.$file->type); |
|
48 | + header('Content-Disposition: attachment; filename='.$quoted); |
|
49 | 49 | header('Content-Transfer-Encoding: binary'); |
50 | 50 | header('Connection: Keep-Alive'); |
51 | 51 | header('Expires: 0'); |
52 | 52 | header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); |
53 | 53 | header('Pragma: public'); |
54 | - header('Content-Length: ' . $size); |
|
54 | + header('Content-Length: '.$size); |
|
55 | 55 | |
56 | - readfile($path . '/' . $file->file); |
|
56 | + readfile($path.'/'.$file->file); |
|
57 | 57 | exit; |
58 | 58 | } |
59 | 59 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | $cmsComponent->setParameter(CmsComponent::PARAMETER_MAIN_NAV_CLASS, CmsComponent::PARAMETER_FILES); |
78 | 78 | if (isset($_FILES[CmsComponent::FILES_PARAMETER_FILE])) { |
79 | 79 | $cmsComponent->storage->getFiles()->addFile($_FILES[CmsComponent::FILES_PARAMETER_FILE]); |
80 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/files'); |
|
80 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/files'); |
|
81 | 81 | exit; |
82 | 82 | } |
83 | 83 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | private function deleteRoute($request, $cmsComponent) |
90 | 90 | { |
91 | 91 | $cmsComponent->storage->getFiles()->deleteFileByName($request::$get[CmsComponent::FILES_PARAMETER_FILE]); |
92 | - header('Location: ' . $request::$subfolders . $cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX) . '/files'); |
|
92 | + header('Location: '.$request::$subfolders.$cmsComponent->getParameter(CmsComponent::PARAMETER_CMS_PREFIX).'/files'); |
|
93 | 93 | exit; |
94 | 94 | } |
95 | 95 |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | } |
181 | 181 | |
182 | 182 | /** |
183 | - * @param \cc\Request $request |
|
183 | + * @param \CloudControl\Cms\cc\Request $request |
|
184 | 184 | * @return array |
185 | 185 | */ |
186 | 186 | private function getPostValues($request) |
@@ -291,7 +291,7 @@ discard block |
||
291 | 291 | } |
292 | 292 | |
293 | 293 | /** |
294 | - * @return \cc\Request |
|
294 | + * @return \CloudControl\Cms\cc\Request |
|
295 | 295 | */ |
296 | 296 | private function setPathBackup() |
297 | 297 | { |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | } |
306 | 306 | |
307 | 307 | /** |
308 | - * @param \cc\Request $request |
|
308 | + * @param \CloudControl\Cms\cc\Request $request |
|
309 | 309 | */ |
310 | 310 | private function resetPathBackup($request) |
311 | 311 | { |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | } |
318 | 318 | |
319 | 319 | /** |
320 | - * @param $form |
|
320 | + * @param string|null $form |
|
321 | 321 | */ |
322 | 322 | private function setFormParameter($form) |
323 | 323 | { |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | if (isset($_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID])) { |
163 | 163 | $this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID]; |
164 | 164 | } else { |
165 | - $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string)microtime(true); |
|
165 | + $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID] = (string) microtime(true); |
|
166 | 166 | $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName]['submitted'] = false; |
167 | 167 | $this->formId = $_SESSION[self::SESSION_PARAMETER_FORM_COMPONENT][$this->formParameterName][self::PARAMETER_FORM_ID]; |
168 | 168 | } |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | $postValues = $request::$post; |
191 | 191 | $postValues[self::PARAMETER_DOCUMENT_TYPE] = $this->documentType; |
192 | 192 | $postValues[self::GET_PARAMETER_PATH] = $this->responseFolder; |
193 | - $postValues['title'] = date('r') . ' - From: ' . $request::$requestUri; |
|
193 | + $postValues['title'] = date('r').' - From: '.$request::$requestUri; |
|
194 | 194 | |
195 | 195 | return $postValues; |
196 | 196 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | private function setFormParameter($form) |
326 | 326 | { |
327 | 327 | if ($this->isFormSubmitted($this->request) || $this->isSubmitAllowed() === false) { |
328 | - $this->parameters[$this->formParameterName] = '<a name="' . $this->formId . '"></a>' . $this->thankYouMessage; |
|
328 | + $this->parameters[$this->formParameterName] = '<a name="'.$this->formId.'"></a>'.$this->thankYouMessage; |
|
329 | 329 | } else { |
330 | 330 | $this->parameters[$this->formParameterName] = $form; |
331 | 331 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @param string $imagePath |
77 | 77 | * @param bool $getExtension |
78 | 78 | * |
79 | - * @return bool|int|string |
|
79 | + * @return integer |
|
80 | 80 | */ |
81 | 81 | public function getImageMimeType($imagePath, $getExtension = false) |
82 | 82 | { |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
152 | - * @param $pathToBitmapFile |
|
152 | + * @param string $pathToBitmapFile |
|
153 | 153 | * |
154 | 154 | * @return string |
155 | 155 | */ |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | } |
166 | 166 | |
167 | 167 | /** |
168 | - * @param $header |
|
168 | + * @param string $header |
|
169 | 169 | * |
170 | 170 | * @return array |
171 | 171 | */ |
@@ -195,14 +195,14 @@ discard block |
||
195 | 195 | * Loop through the data in the body of the bitmap |
196 | 196 | * file and calculate each individual pixel based on the |
197 | 197 | * bytes |
198 | - * @param $bodySize |
|
199 | - * @param $x |
|
198 | + * @param integer $bodySize |
|
199 | + * @param integer $x |
|
200 | 200 | * @param $width |
201 | - * @param $usePadding |
|
202 | - * @param $y |
|
201 | + * @param boolean $usePadding |
|
202 | + * @param integer $y |
|
203 | 203 | * @param $height |
204 | - * @param $body |
|
205 | - * @param $image |
|
204 | + * @param string $body |
|
205 | + * @param resource $image |
|
206 | 206 | */ |
207 | 207 | private function loopThroughBodyAndCalculatePixels($bodySize, $x, $width, $usePadding, $y, $height, $body, $image) |
208 | 208 | { |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | } elseif (is_string($imageContainer)) { |
36 | 36 | $this->_imageResource = imagecreatefromstring($imageContainer); |
37 | 37 | } else { |
38 | - throw new \Exception('Could not create image resource, accepted inputs are: "resource of type (gd)", path_to_image and "string". <br /><pre>' . var_export($imageContainer, true) . '</pre>'); |
|
38 | + throw new \Exception('Could not create image resource, accepted inputs are: "resource of type (gd)", path_to_image and "string". <br /><pre>'.var_export($imageContainer, true).'</pre>'); |
|
39 | 39 | } |
40 | 40 | } |
41 | 41 | |
@@ -179,9 +179,9 @@ discard block |
||
179 | 179 | // Cut it in parts of 2 bytes |
180 | 180 | $header_parts = str_split($header, 2); |
181 | 181 | // Get the width 4 bytes |
182 | - $width = hexdec($header_parts[19] . $header_parts[18]); |
|
182 | + $width = hexdec($header_parts[19].$header_parts[18]); |
|
183 | 183 | // Get the height 4 bytes |
184 | - $height = hexdec($header_parts[23] . $header_parts[22]); |
|
184 | + $height = hexdec($header_parts[23].$header_parts[22]); |
|
185 | 185 | // Unset the header params |
186 | 186 | unset($header_parts); |
187 | 187 | |
@@ -226,9 +226,9 @@ discard block |
||
226 | 226 | } |
227 | 227 | // Calculation of the RGB-pixel (defined as BGR in image-data). Define $iPos as absolute position in the body |
228 | 228 | $iPos = $i * 2; |
229 | - $r = hexdec($body[$iPos + 4] . $body[$iPos + 5]); |
|
230 | - $g = hexdec($body[$iPos + 2] . $body[$iPos + 3]); |
|
231 | - $b = hexdec($body[$iPos] . $body[$iPos + 1]); |
|
229 | + $r = hexdec($body[$iPos + 4].$body[$iPos + 5]); |
|
230 | + $g = hexdec($body[$iPos + 2].$body[$iPos + 3]); |
|
231 | + $b = hexdec($body[$iPos].$body[$iPos + 1]); |
|
232 | 232 | // Calculate and draw the pixel |
233 | 233 | $color = imagecolorallocate($image, $r, $g, $b); |
234 | 234 | imagesetpixel($image, $x, $height - $y, $color); |
@@ -13,6 +13,10 @@ |
||
13 | 13 | { |
14 | 14 | protected $imagesDir; |
15 | 15 | |
16 | + /** |
|
17 | + * @param \CloudControl\Cms\storage\Repository $repository |
|
18 | + * @param string $imagesDir |
|
19 | + */ |
|
16 | 20 | public function __construct($repository, $imagesDir) |
17 | 21 | { |
18 | 22 | parent::__construct($repository); |
@@ -45,10 +45,10 @@ discard block |
||
45 | 45 | $destinationPath = $this->getDestinationPath(); |
46 | 46 | |
47 | 47 | $filename = $this->validateFilename($postValues['name'], $destinationPath); |
48 | - $destination = $destinationPath . DIRECTORY_SEPARATOR . $filename; |
|
48 | + $destination = $destinationPath.DIRECTORY_SEPARATOR.$filename; |
|
49 | 49 | |
50 | 50 | if ($postValues['error'] != '0') { |
51 | - throw new \Exception('Error uploading file. Error code: ' . $postValues['error']); |
|
51 | + throw new \Exception('Error uploading file. Error code: '.$postValues['error']); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | if (move_uploaded_file($postValues['tmp_name'], $destination)) { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | foreach ($images as $key => $image) { |
81 | 81 | if ($image->file == $filename) { |
82 | 82 | foreach ($image->set as $imageSetFilename) { |
83 | - $destination = $destinationPath . '/' . $imageSetFilename; |
|
83 | + $destination = $destinationPath.'/'.$imageSetFilename; |
|
84 | 84 | if (file_exists($destination)) { |
85 | 85 | unlink($destination); |
86 | 86 | } else { |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | */ |
129 | 129 | private function getDestinationPath() |
130 | 130 | { |
131 | - $destinationPath = realpath($this->imagesDir . DIRECTORY_SEPARATOR); |
|
131 | + $destinationPath = realpath($this->imagesDir.DIRECTORY_SEPARATOR); |
|
132 | 132 | return $destinationPath; |
133 | 133 | } |
134 | 134 | } |
135 | 135 | \ No newline at end of file |
@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | // Define the ratio and adjust the width and height |
65 | 65 | if ($this->_preserveAspectRatio) { |
66 | - $ratio = min($this->_width/$originalWidth, $this->_height/$originalHeight); |
|
66 | + $ratio = min($this->_width / $originalWidth, $this->_height / $originalHeight); |
|
67 | 67 | $this->_width = $originalWidth * $ratio; |
68 | 68 | $this->_height = $originalHeight * $ratio; |
69 | 69 | } |
@@ -26,14 +26,14 @@ |
||
26 | 26 | |
27 | 27 | // Define which ratio will be used, depending on which is the smallest side |
28 | 28 | $ratio = min($hRatio, $wRatio); |
29 | - if($ratio > 1) $ratio = 1; |
|
29 | + if ($ratio > 1) $ratio = 1; |
|
30 | 30 | |
31 | 31 | // Define sizes |
32 | 32 | $this->_destWidth = floor($originalWidth * $ratio); |
33 | 33 | $this->_destHeight = floor($originalHeight * $ratio); |
34 | 34 | |
35 | 35 | // Define margins |
36 | - $this->_destX = floor(($this->_width - $this->_destWidth) / 2); |
|
36 | + $this->_destX = floor(($this->_width - $this->_destWidth) / 2); |
|
37 | 37 | $this->_destY = floor(($this->_height - $this->_destHeight) / 2); |
38 | 38 | |
39 | 39 | // Execute the Crop method with the given parameters |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | return $returnFileNames; |
47 | 47 | } else { |
48 | - throw new \Exception('Image doesnt exist: ' . $imagePath); |
|
48 | + throw new \Exception('Image doesnt exist: '.$imagePath); |
|
49 | 49 | } |
50 | 50 | } |
51 | 51 | |
@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | * @return string |
57 | 57 | * @throws \Exception |
58 | 58 | */ |
59 | - public function resize($imagePath='', $width='',$height='') |
|
59 | + public function resize($imagePath = '', $width = '', $height = '') |
|
60 | 60 | { |
61 | - $modifier = '-r' . $width . 'x' . $height; |
|
62 | - return $this->applyMethod('Resize', $imagePath, $width,$height, $modifier); |
|
61 | + $modifier = '-r'.$width.'x'.$height; |
|
62 | + return $this->applyMethod('Resize', $imagePath, $width, $height, $modifier); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -69,10 +69,10 @@ discard block |
||
69 | 69 | * @return string |
70 | 70 | * @throws \Exception |
71 | 71 | */ |
72 | - public function smartcrop($imagePath='', $width='',$height='') |
|
72 | + public function smartcrop($imagePath = '', $width = '', $height = '') |
|
73 | 73 | { |
74 | - $modifier = '-s' . $width . 'x' . $height; |
|
75 | - return $this->applyMethod('SmartCrop', $imagePath, $width,$height, $modifier); |
|
74 | + $modifier = '-s'.$width.'x'.$height; |
|
75 | + return $this->applyMethod('SmartCrop', $imagePath, $width, $height, $modifier); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | * @return string |
83 | 83 | * @throws \Exception |
84 | 84 | */ |
85 | - public function boxcrop($imagePath='', $width='',$height='') |
|
85 | + public function boxcrop($imagePath = '', $width = '', $height = '') |
|
86 | 86 | { |
87 | - $modifier = '-b' . $width . 'x' . $height; |
|
88 | - return $this->applyMethod('BoxCrop', $imagePath, $width,$height, $modifier); |
|
87 | + $modifier = '-b'.$width.'x'.$height; |
|
88 | + return $this->applyMethod('BoxCrop', $imagePath, $width, $height, $modifier); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | * |
95 | 95 | * @return string |
96 | 96 | */ |
97 | - private function modifyName($imagePath, $modifier='') |
|
97 | + private function modifyName($imagePath, $modifier = '') |
|
98 | 98 | { |
99 | 99 | $filename = basename($imagePath); |
100 | 100 | $path = dirname($imagePath); |
@@ -104,30 +104,30 @@ discard block |
||
104 | 104 | array_pop($fileParts); |
105 | 105 | $fileNameWithoutExtension = implode('-', $fileParts); |
106 | 106 | $fileNameWithoutExtension = StringUtil::slugify($fileNameWithoutExtension); |
107 | - $filename = $fileNameWithoutExtension . $modifier . '.' . $extension; |
|
107 | + $filename = $fileNameWithoutExtension.$modifier.'.'.$extension; |
|
108 | 108 | } else { |
109 | 109 | $filename = StringUtil::slugify($filename); |
110 | 110 | } |
111 | 111 | |
112 | - if (file_exists($path . '/' . $filename)) { |
|
112 | + if (file_exists($path.'/'.$filename)) { |
|
113 | 113 | $fileParts = explode('.', $filename); |
114 | 114 | if (count($fileParts) > 1) { |
115 | 115 | $extension = end($fileParts); |
116 | 116 | array_pop($fileParts); |
117 | 117 | $fileNameWithoutExtension = implode('-', $fileParts); |
118 | 118 | $fileNameWithoutExtension .= '-copy'; |
119 | - $filename = $fileNameWithoutExtension . '.' . $extension; |
|
119 | + $filename = $fileNameWithoutExtension.'.'.$extension; |
|
120 | 120 | } else { |
121 | 121 | $filename .= '-copy'; |
122 | 122 | } |
123 | - return $this->modifyName($path . '/' . $filename); |
|
123 | + return $this->modifyName($path.'/'.$filename); |
|
124 | 124 | } |
125 | - return $path . '/' . $filename; |
|
125 | + return $path.'/'.$filename; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | private function applyMethod($method, $imagePath, $width, $height, $modifier) |
129 | 129 | { |
130 | - $method = 'CloudControl\Cms\\images\\methods\\' . $method; |
|
130 | + $method = 'CloudControl\Cms\\images\\methods\\'.$method; |
|
131 | 131 | $destination = $this->modifyName($imagePath, $modifier); |
132 | 132 | if (file_exists($imagePath)) { |
133 | 133 | $image = new Image(); |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | $resizedImage->saveImage($destination, $resizedImage->getImageMimeType($imagePath), 80); |
142 | 142 | return basename($destination); |
143 | 143 | } else { |
144 | - throw new \Exception('Image doesnt exist: ' . $imagePath); |
|
144 | + throw new \Exception('Image doesnt exist: '.$imagePath); |
|
145 | 145 | } |
146 | 146 | } |
147 | 147 | } |
@@ -45,23 +45,23 @@ |
||
45 | 45 | */ |
46 | 46 | public function __construct() |
47 | 47 | { |
48 | - $rootPath = str_replace('\\', '/', realpath(str_replace('\\', '/', dirname(__FILE__)) . '/../../') . '/'); |
|
48 | + $rootPath = str_replace('\\', '/', realpath(str_replace('\\', '/', dirname(__FILE__)).'/../../').'/'); |
|
49 | 49 | |
50 | - self::$subfolders = '/' . str_replace('//', '/', str_replace(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']), "", $rootPath)); |
|
50 | + self::$subfolders = '/'.str_replace('//', '/', str_replace(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']), "", $rootPath)); |
|
51 | 51 | self::$subfolders = str_replace('//', '/', self::$subfolders); |
52 | 52 | if (PHP_SAPI === 'cli') { |
53 | 53 | global $argv; |
54 | 54 | array_shift($argv); |
55 | 55 | self::$queryString = ''; |
56 | - self::$requestUri = self::$subfolders . implode('/', $argv); |
|
56 | + self::$requestUri = self::$subfolders.implode('/', $argv); |
|
57 | 57 | } else { |
58 | 58 | self::$requestUri = $_SERVER['REQUEST_URI']; |
59 | 59 | self::$queryString = $_SERVER['QUERY_STRING']; |
60 | 60 | } |
61 | 61 | if (self::$subfolders === '/') { |
62 | - self::$relativeUri = str_replace('?' . self::$queryString, '', substr(self::$requestUri,1)); |
|
62 | + self::$relativeUri = str_replace('?'.self::$queryString, '', substr(self::$requestUri, 1)); |
|
63 | 63 | } else { |
64 | - self::$relativeUri = str_replace('?' . self::$queryString, '', str_replace(self::$subfolders, '', self::$requestUri)); |
|
64 | + self::$relativeUri = str_replace('?'.self::$queryString, '', str_replace(self::$subfolders, '', self::$requestUri)); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | self::$requestParameters = explode('/', self::$relativeUri); |
@@ -2,21 +2,21 @@ discard block |
||
2 | 2 | | THE FOLLOWING ERROR OCCURED | |
3 | 3 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
4 | 4 | |
5 | - <?php echo $message . PHP_EOL; ?> |
|
5 | + <?php echo $message.PHP_EOL; ?> |
|
6 | 6 | |
7 | 7 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
8 | 8 | | IN FILE | |
9 | 9 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
10 | 10 | |
11 | - <?php echo $file . ':' . $line . PHP_EOL; ?> |
|
11 | + <?php echo $file.':'.$line.PHP_EOL; ?> |
|
12 | 12 | |
13 | 13 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
14 | 14 | | CONTENTS OF THE FILE | |
15 | 15 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
16 | 16 | |
17 | 17 | <?php |
18 | -foreach($lines as $nr => $currentLine) { |
|
19 | - echo ($nr == $line ? '* ' : ' ' ) . str_pad($nr, 3, "0", STR_PAD_LEFT) . ' ' . $currentLine; |
|
18 | +foreach ($lines as $nr => $currentLine) { |
|
19 | + echo ($nr == $line ? '* ' : ' ').str_pad($nr, 3, "0", STR_PAD_LEFT).' '.$currentLine; |
|
20 | 20 | } |
21 | 21 | ?> |
22 | 22 | |
@@ -25,11 +25,11 @@ discard block |
||
25 | 25 | ------------------------------------------------------------------------------------------------------------------------------------------------ |
26 | 26 | |
27 | 27 | <?php |
28 | -foreach($trace as $row) { |
|
29 | - echo (isset($row['file']) ? basename($row['file']) : '') . ':' |
|
30 | - . (isset($row['line']) ? $row['line'] : '') . "\t\t\t" |
|
31 | - . (isset($row['class']) ? $row['class'] : ' ') . "\t\t\t" |
|
32 | - . (isset($row['type']) ? $row['type'] : ' ') . "\t\t\t" |
|
33 | - . (isset($row['function']) ? $row['function'] : ' ') . PHP_EOL; |
|
28 | +foreach ($trace as $row) { |
|
29 | + echo (isset($row['file']) ? basename($row['file']) : '').':' |
|
30 | + . (isset($row['line']) ? $row['line'] : '')."\t\t\t" |
|
31 | + . (isset($row['class']) ? $row['class'] : ' ')."\t\t\t" |
|
32 | + . (isset($row['type']) ? $row['type'] : ' ')."\t\t\t" |
|
33 | + . (isset($row['function']) ? $row['function'] : ' ').PHP_EOL; |
|
34 | 34 | } |
35 | 35 | ?> |
36 | 36 | \ No newline at end of file |