@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | * @param bool $changedEntities Reference, will be set to true if any of entities changed |
260 | 260 | * internally. |
261 | 261 | */ |
262 | - public function hasChanges(bool &$changedEntities = null): bool |
|
262 | + public function hasChanges(bool & $changedEntities = null): bool |
|
263 | 263 | { |
264 | 264 | foreach ($this->entities as $entity) { |
265 | 265 | if ($entity->hasChanges()) { |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | |
327 | 327 | $atomics = array_merge( |
328 | 328 | $atomics, |
329 | - $entity->buildAtomics((!empty($container) ? $container . '.' : '') . $offset) |
|
329 | + $entity->buildAtomics((!empty($container) ? $container.'.' : '').$offset) |
|
330 | 330 | ); |
331 | 331 | } |
332 | 332 |
@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | abstract class Record extends RecordEntity implements ActiveEntityInterface |
17 | 17 | { |
18 | - public function save(TransactionInterface $transaction = null, bool $queueRelations = true): int |
|
18 | + public function save(TransactionInterface $transaction = null, bool $queueRelations = true): int |
|
19 | 19 | { |
20 | 20 | //saturate transaction |
21 | 21 | $transaction->addCommand($command = $this->queueSave($queueRelations)); |
@@ -110,8 +110,8 @@ discard block |
||
110 | 110 | * |
111 | 111 | * @see Record::INDEXES |
112 | 112 | */ |
113 | - const INDEX = 1000; //Default index type |
|
114 | - const UNIQUE = 2000; //Unique index definition |
|
113 | + const INDEX = 1000; //Default index type |
|
114 | + const UNIQUE = 2000; //Unique index definition |
|
115 | 115 | |
116 | 116 | /* |
117 | 117 | * ================================================ |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | $this->dispatch('insert', new RecordEvent($this, $command)); |
524 | 524 | |
525 | 525 | //Executed when transaction successfully completed |
526 | - $command->onComplete(function ($command) { |
|
526 | + $command->onComplete(function($command) { |
|
527 | 527 | $this->setState(ORMInterface::STATE_LOADED); |
528 | 528 | $this->flushChanges(); |
529 | 529 | $this->dispatch('created', new RecordEvent($this)); |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | $this->dispatch('update', new RecordEvent($this, $command)); |
551 | 551 | |
552 | 552 | //Executed when transaction successfully completed |
553 | - $command->onComplete(function ($command) { |
|
553 | + $command->onComplete(function($command) { |
|
554 | 554 | $this->setState(ORMInterface::STATE_LOADED); |
555 | 555 | $this->flushChanges(); |
556 | 556 | $this->dispatch('updated', new RecordEvent($this, $command)); |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | ); |
576 | 576 | |
577 | 577 | //Executed when transaction successfully completed |
578 | - $command->onComplete(function () { |
|
578 | + $command->onComplete(function() { |
|
579 | 579 | $this->setState(ORMInterface::STATE_DELETED); |
580 | 580 | $this->dispatch('deleted', new RecordEvent($this)); |
581 | 581 | }); |