@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | */ |
137 | 137 | protected function weakCustomAdd(object $object) |
138 | 138 | { |
139 | - if($object instanceof TEventHandler) { |
|
139 | + if ($object instanceof TEventHandler) { |
|
140 | 140 | $object = $object->getHandlerObject(); |
141 | 141 | $this->_eventHandlerCount++; |
142 | 142 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | */ |
153 | 153 | protected function weakCustomRemove(object $object) |
154 | 154 | { |
155 | - if($object instanceof TEventHandler) { |
|
155 | + if ($object instanceof TEventHandler) { |
|
156 | 156 | $object = $object->getHandlerObject(); |
157 | 157 | $this->_eventHandlerCount--; |
158 | 158 | } |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $handler = null; |
190 | 190 | } |
191 | 191 | } elseif (is_object($handler)) { |
192 | - if($handler instanceof WeakReference) { |
|
192 | + if ($handler instanceof WeakReference) { |
|
193 | 193 | $handler = $handler->get(); |
194 | 194 | } elseif (($handler instanceof TEventHandler) && !$handler->hasHandler()) { |
195 | 195 | $handler = null; |
@@ -288,7 +288,7 @@ discard block |
||
288 | 288 | */ |
289 | 289 | public function setDiscardInvalid($value): void |
290 | 290 | { |
291 | - if($value === $this->_discardInvalid) { |
|
291 | + if ($value === $this->_discardInvalid) { |
|
292 | 292 | return; |
293 | 293 | } |
294 | 294 | if ($this->_discardInvalid !== null && !Prado::isCallingSelf()) { |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | $obj = $obj->getHandlerObject(true); |
308 | 308 | } |
309 | 309 | if ($obj instanceof WeakReference) { |
310 | - if($obj = $obj->get()) { |
|
310 | + if ($obj = $obj->get()) { |
|
311 | 311 | $this->weakAdd($obj); |
312 | 312 | } else { |
313 | 313 | parent::removeAtIndexInPriority($i, $priority); |
@@ -517,7 +517,7 @@ discard block |
||
517 | 517 | throw new TInvalidDataValueException('weakcallablecollection_callable_required'); |
518 | 518 | } |
519 | 519 | $return = null; |
520 | - foreach($items as $item) { |
|
520 | + foreach ($items as $item) { |
|
521 | 521 | $itemPriority = null; |
522 | 522 | if (($isPriorityItem = ($item instanceof IPriorityItem)) && ($priority === null || !is_numeric($priority))) { |
523 | 523 | $itemPriority = $priority = $item->getPriority(); |
@@ -533,7 +533,7 @@ discard block |
||
533 | 533 | $result = parent::insertAtIndexInPriority($item, $index, $priority, $preserveCache); |
534 | 534 | if ($return === null) { |
535 | 535 | $return = $result; |
536 | - } elseif(!is_array($return)) { |
|
536 | + } elseif (!is_array($return)) { |
|
537 | 537 | $return = [$return, $result]; |
538 | 538 | } else { |
539 | 539 | $return[] = $result; |
@@ -679,7 +679,7 @@ discard block |
||
679 | 679 | $this->flattenPriorities(); |
680 | 680 | |
681 | 681 | if (($index = array_search($item, $this->_fd, true)) === false && $this->_eventHandlerCount) { |
682 | - foreach($this->_fd as $index => $pItem) { |
|
682 | + foreach ($this->_fd as $index => $pItem) { |
|
683 | 683 | if (($pItem instanceof TEventHandler) && $pItem->isSameHandler($item, true)) { |
684 | 684 | break; |
685 | 685 | } |
@@ -731,8 +731,8 @@ discard block |
||
731 | 731 | $absindex = 0; |
732 | 732 | foreach (array_keys($this->_d) as $priority) { |
733 | 733 | $index = false; |
734 | - foreach($this->_d[$priority] as $index => $pItem) { |
|
735 | - if(($pItem instanceof TEventHandler) && $pItem->isSameHandler($item, true)) { |
|
734 | + foreach ($this->_d[$priority] as $index => $pItem) { |
|
735 | + if (($pItem instanceof TEventHandler) && $pItem->isSameHandler($item, true)) { |
|
736 | 736 | break; |
737 | 737 | } |
738 | 738 | $index = false; |