Completed
Branch feature/pre-split (4cb052)
by Anton
03:34
created
source/Spiral/ODM/Entities/DocumentCompositor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
source/Spiral/ORM/Record.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.
source/Spiral/ORM/RecordEntity.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         });
Please login to merge, or discard this patch.