@@ -127,7 +127,7 @@ |
||
127 | 127 | public static function poFile2moFile($pofile, $mofile) |
128 | 128 | { |
129 | 129 | if (!is_file($pofile)) { |
130 | - throw new Exception("File $pofile doesn't exist."); |
|
130 | + throw new Exception("file $pofile doesn't exist."); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | include_once __DIR__ . '/PO.php'; |
@@ -481,7 +481,7 @@ |
||
481 | 481 | } |
482 | 482 | |
483 | 483 | foreach ($this->_d as $priority => $items) { |
484 | - for ($index = count($items) - 1;$index >= 0;$index--) { |
|
484 | + for ($index = count($items) - 1; $index >= 0; $index--) { |
|
485 | 485 | $this->removeAtIndexInPriority($index, $priority); |
486 | 486 | } |
487 | 487 | unset($this->_d[$priority]); |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | $hexLength = strlen($hex); |
63 | 63 | $base = strlen($alphabet); |
64 | 64 | $result = ''; |
65 | - for ($i = 0;$i < $hexLength;$i += 6) { |
|
65 | + for ($i = 0; $i < $hexLength; $i += 6) { |
|
66 | 66 | $number = hexdec(substr($hex, $i, 6)); |
67 | 67 | while ($number) { |
68 | 68 | $result .= $alphabet[$number % $base]; |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | $hasShadow = ($theme & THEME_SHADOWED_TEXT); |
109 | - for ($i = 0;$i < $length;$i++) { |
|
109 | + for ($i = 0; $i < $length; $i++) { |
|
110 | 110 | $color = imagecolorallocate($image, rand(150, 220), rand(150, 220), rand(150, 220)); |
111 | 111 | $size = rand($fontWidth - 10, $fontWidth); |
112 | 112 | $angle = rand(-30, 30); |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | |
160 | 160 | function addNoise($image, $width, $height) |
161 | 161 | { |
162 | - for ($x = 0;$x < $width;++$x) { |
|
163 | - for ($y = 0;$y < $height;++$y) { |
|
162 | + for ($x = 0; $x < $width; ++$x) { |
|
163 | + for ($y = 0; $y < $height; ++$y) { |
|
164 | 164 | if (rand(0, 100) < 25) { |
165 | 165 | $color = imagecolorallocate($image, rand(150, 220), rand(150, 220), rand(150, 220)); |
166 | 166 | imagesetpixel($image, $x, $y, $color); |
@@ -172,13 +172,13 @@ discard block |
||
172 | 172 | |
173 | 173 | function addGrid($image, $width, $height) |
174 | 174 | { |
175 | - for ($i = 0;$i < $width;$i += rand(15, 25)) { |
|
175 | + for ($i = 0; $i < $width; $i += rand(15, 25)) { |
|
176 | 176 | imagesetthickness($image, rand(2, 6)); |
177 | 177 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
178 | 178 | imageline($image, $i + rand(-10, 20), 0, $i + rand(-10, 20), $height, $color); |
179 | 179 | imagecolordeallocate($image, $color); |
180 | 180 | } |
181 | - for ($i = 0;$i < $height;$i += rand(15, 25)) { |
|
181 | + for ($i = 0; $i < $height; $i += rand(15, 25)) { |
|
182 | 182 | imagesetthickness($image, rand(2, 6)); |
183 | 183 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
184 | 184 | imageline($image, 0, $i + rand(-10, 20), $width, $i + rand(-10, 20), $color); |
@@ -188,10 +188,10 @@ discard block |
||
188 | 188 | |
189 | 189 | function addScribble($image, $width, $height) |
190 | 190 | { |
191 | - for ($i = 0;$i < 8;$i++) { |
|
191 | + for ($i = 0; $i < 8; $i++) { |
|
192 | 192 | $color = imagecolorallocate($image, rand(100, 180), rand(100, 180), rand(100, 180)); |
193 | 193 | $points = []; |
194 | - for ($j = 1;$j < rand(5, 10);$j++) { |
|
194 | + for ($j = 1; $j < rand(5, 10); $j++) { |
|
195 | 195 | $points[] = rand(2 * (20 * ($i + 1)), 2 * (50 * ($i + 1))); |
196 | 196 | $points[] = rand(30, $height + 30); |
197 | 197 | } |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | { |
206 | 206 | $tempImage = imagecreatetruecolor($width, $height); |
207 | 207 | $chunk = rand(1, 5); |
208 | - for ($x = $y = 0;$x < $width;$x += $chunk) { |
|
208 | + for ($x = $y = 0; $x < $width; $x += $chunk) { |
|
209 | 209 | $chunk = rand(1, 5); |
210 | 210 | $y += rand(-1, 1); |
211 | 211 | if ($y >= $height) { |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | } |
217 | 217 | imagecopy($tempImage, $image, $x, 0, $x, $y, $chunk, $height); |
218 | 218 | } |
219 | - for ($x = $y = 0;$y < $height;$y += $chunk) { |
|
219 | + for ($x = $y = 0; $y < $height; $y += $chunk) { |
|
220 | 220 | $chunk = rand(1, 5); |
221 | 221 | $x += rand(-1, 1); |
222 | 222 | if ($x >= $width) { |
@@ -542,7 +542,7 @@ |
||
542 | 542 | public function getStyleSheetUrls() |
543 | 543 | { |
544 | 544 | $stylesheets = array_values( |
545 | - array_map(function ($e) { |
|
545 | + array_map(function($e) { |
|
546 | 546 | return is_array($e) ? $e[0] : $e; |
547 | 547 | }, $this->_styleSheetFiles) |
548 | 548 | ); |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | {$this->action} {$parameters}{$optional} |
207 | 207 | {$description} |
208 | 208 | |
209 | -EOD; |
|
209 | +eod; |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | /** |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | </parameters> |
379 | 379 | --> |
380 | 380 | </application> |
381 | -EOD; |
|
381 | +eod; |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | /** |
@@ -403,7 +403,7 @@ discard block |
||
403 | 403 | <h1>Welcome to PRADO!</h1> |
404 | 404 | </body> |
405 | 405 | </html> |
406 | -EOD; |
|
406 | +eod; |
|
407 | 407 | } |
408 | 408 | } |
409 | 409 | |
@@ -678,7 +678,7 @@ discard block |
||
678 | 678 | * @soapproperty |
679 | 679 | */ |
680 | 680 | |
681 | -EOD; |
|
681 | +eod; |
|
682 | 682 | } |
683 | 683 | $prop .= "\tpublic $name;"; |
684 | 684 | return $prop; |
@@ -711,7 +711,7 @@ discard block |
||
711 | 711 | } |
712 | 712 | } |
713 | 713 | |
714 | -EOD; |
|
714 | +eod; |
|
715 | 715 | } |
716 | 716 | } |
717 | 717 |
@@ -114,17 +114,17 @@ discard block |
||
114 | 114 | * Indexes for the rare fields. |
115 | 115 | * In order to save memory, rare fields will only be created if they are needed. |
116 | 116 | */ |
117 | - const RF_CONTROLS = 0; // child controls |
|
118 | - const RF_CHILD_STATE = 1; // child state field |
|
119 | - const RF_NAMED_CONTROLS = 2; // list of controls whose namingcontainer is this control |
|
120 | - const RF_NAMED_CONTROLS_ID = 3; // counter for automatic id |
|
121 | - const RF_SKIN_ID = 4; // skin ID |
|
122 | - const RF_DATA_BINDINGS = 5; // data bindings |
|
123 | - const RF_EVENTS = 6; // event handlers |
|
124 | - const RF_CONTROLSTATE = 7; // controlstate |
|
125 | - const RF_NAMED_OBJECTS = 8; // controls declared with ID on template |
|
126 | - const RF_ADAPTER = 9; // adapter |
|
127 | - const RF_AUTO_BINDINGS = 10; // auto data bindings |
|
117 | + const RF_CONTROLS = 0; // child controls |
|
118 | + const RF_CHILD_STATE = 1; // child state field |
|
119 | + const RF_NAMED_CONTROLS = 2; // list of controls whose namingcontainer is this control |
|
120 | + const RF_NAMED_CONTROLS_ID = 3; // counter for automatic id |
|
121 | + const RF_SKIN_ID = 4; // skin ID |
|
122 | + const RF_DATA_BINDINGS = 5; // data bindings |
|
123 | + const RF_EVENTS = 6; // event handlers |
|
124 | + const RF_CONTROLSTATE = 7; // controlstate |
|
125 | + const RF_NAMED_OBJECTS = 8; // controls declared with ID on template |
|
126 | + const RF_ADAPTER = 9; // adapter |
|
127 | + const RF_AUTO_BINDINGS = 10; // auto data bindings |
|
128 | 128 | |
129 | 129 | /** |
130 | 130 | * @var string control ID |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | public function getUniqueID() |
403 | 403 | { |
404 | 404 | if ($this->_uid === '' || $this->_uid === null) { // need to build the UniqueID |
405 | - $this->_uid = ''; // set to not-null, so that clearCachedUniqueID() may take action |
|
405 | + $this->_uid = ''; // set to not-null, so that clearCachedUniqueID() may take action |
|
406 | 406 | if ($namingContainer = $this->getNamingContainer()) { |
407 | 407 | if ($this->getPage() === $namingContainer) { |
408 | 408 | return ($this->_uid = $this->_id); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | console.log ("[Tot Time] [Time ] [Level] [Category] [Message]"); |
85 | 85 | |
86 | -EOD; |
|
86 | +eod; |
|
87 | 87 | |
88 | 88 | return $string; |
89 | 89 | } |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | } |
123 | 123 | </script> |
124 | 124 | |
125 | -EOD; |
|
125 | +eod; |
|
126 | 126 | |
127 | 127 | return $string; |
128 | 128 | } |
@@ -143,7 +143,7 @@ |
||
143 | 143 | |
144 | 144 | $this->loadConfig($config); |
145 | 145 | $this->_cache = new \Memcached($this->_persistentid); |
146 | - if($this->_persistentid !== null && count($this->_cache->getServerList()) > 0) |
|
146 | + if ($this->_persistentid !== null && count($this->_cache->getServerList()) > 0) |
|
147 | 147 | { |
148 | 148 | Prado::trace('Skipping re-adding servers for persistent id ' . $this->_persistentid, '\Prado\Caching\TMemCache'); |
149 | 149 | } else { |
@@ -253,7 +253,7 @@ |
||
253 | 253 | $token .= $this->charAt($pattern, $i_format++); |
254 | 254 | } |
255 | 255 | |
256 | - switch($token) |
|
256 | + switch ($token) |
|
257 | 257 | { |
258 | 258 | case 'yyyy': |
259 | 259 | case 'yy': |