@@ -236,8 +236,7 @@ discard block |
||
236 | 236 | public function runQueryForList($connection, $parameter, $sql, $result, $delegate = null) |
237 | 237 | { |
238 | 238 | $registry = $this->getManager()->getTypeHandlers(); |
239 | - $list = $result instanceof \ArrayAccess ? $result : |
|
240 | - $this->_statement->createInstanceOfListClass($registry); |
|
239 | + $list = $result instanceof \ArrayAccess ? $result : $this->_statement->createInstanceOfListClass($registry); |
|
241 | 240 | $connection->setActive(true); |
242 | 241 | $reader = $sql->query(); |
243 | 242 | //$reader = $this->executeSQLQueryLimit($connection, $sql, $max, $skip); |
@@ -313,8 +312,7 @@ discard block |
||
313 | 312 | foreach ($reader as $row) { |
314 | 313 | $obj = $this->applyResultMap($row); |
315 | 314 | $key = TPropertyAccess::get($obj, $keyProperty); |
316 | - $value = ($valueProperty === null) ? $obj : |
|
317 | - TPropertyAccess::get($obj, $valueProperty); |
|
315 | + $value = ($valueProperty === null) ? $obj : TPropertyAccess::get($obj, $valueProperty); |
|
318 | 316 | $param = new TResultSetMapItemParameter($key, $value, $parameter, $map); |
319 | 317 | $this->raiseRowDelegate($delegate, $param); |
320 | 318 | } |
@@ -323,8 +321,7 @@ discard block |
||
323 | 321 | foreach ($reader as $row) { |
324 | 322 | $obj = $this->applyResultMap($row); |
325 | 323 | $key = TPropertyAccess::get($obj, $keyProperty); |
326 | - $map[$key] = ($valueProperty === null) ? $obj : |
|
327 | - TPropertyAccess::get($obj, $valueProperty); |
|
324 | + $map[$key] = ($valueProperty === null) ? $obj : TPropertyAccess::get($obj, $valueProperty); |
|
328 | 325 | } |
329 | 326 | } |
330 | 327 | $this->onExecuteQuery($command); |
@@ -295,7 +295,7 @@ |
||
295 | 295 | */ |
296 | 296 | public function getValidationPropertyValue() |
297 | 297 | { |
298 | - return implode(',', array_map(function ($file) { |
|
298 | + return implode(',', array_map(function($file) { |
|
299 | 299 | return $file->getFileName(); |
300 | 300 | }, $this->_files)); |
301 | 301 | } |
@@ -226,7 +226,7 @@ |
||
226 | 226 | */ |
227 | 227 | public function clear() |
228 | 228 | { |
229 | - for ($i = $this->_c - 1;$i >= 0;--$i) { |
|
229 | + for ($i = $this->_c - 1; $i >= 0; --$i) { |
|
230 | 230 | $this->removeAt($i); |
231 | 231 | } |
232 | 232 | } |
@@ -1235,7 +1235,7 @@ |
||
1235 | 1235 | public function onEndRequest() |
1236 | 1236 | { |
1237 | 1237 | $this->flushOutput(false); // flush all remaining content in the buffer |
1238 | - $this->saveGlobals(); // save global state |
|
1238 | + $this->saveGlobals(); // save global state |
|
1239 | 1239 | $this->raiseEvent('OnEndRequest', $this, null); |
1240 | 1240 | } |
1241 | 1241 | } |
@@ -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 | ); |
@@ -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); |
@@ -180,8 +180,7 @@ |
||
180 | 180 | |
181 | 181 | public function validate() |
182 | 182 | { |
183 | - if (! |
|
184 | - ( |
|
183 | + if (!( |
|
185 | 184 | ($challenge = @$_POST[$this->getChallengeFieldName()]) |
186 | 185 | and |
187 | 186 | ($response = @$_POST[$this->getResponseFieldName()]) |