Completed
Branch feature/pre-split (7b42f5)
by Anton
03:44
created
Excluded/ODM/Entities/Compositor.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     /**
493 493
      * {@inheritdoc}
494 494
      *
495
-     * @return DocumentEntity[]
495
+     * @return \ArrayIterator
496 496
      */
497 497
     public function getIterator()
498 498
     {
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
      * Example:
589 589
      * $user->cards->findOne(['active' => true]);
590 590
      *
591
-     * @param array|DocumentEntity $query
591
+     * @param DocumentEntity $query
592 592
      *
593 593
      * @return null|DocumentEntity
594 594
      */
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/Postgres/QueryCompiler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
                 $table,
29 29
                 $columns,
30 30
                 $rowsets
31
-            ) . (!empty($primaryKey) ? ' RETURNING ' . $this->quote($primaryKey) : '');
31
+            ).(!empty($primaryKey) ? ' RETURNING '.$this->quote($primaryKey) : '');
32 32
     }
33 33
 
34 34
     /**
@@ -40,6 +40,6 @@  discard block
 block discarded – undo
40 40
             return '';
41 41
         }
42 42
 
43
-        return 'DISTINCT' . (is_string($distinct) ? '(' . $this->quote($distinct) . ')' : '');
43
+        return 'DISTINCT'.(is_string($distinct) ? '('.$this->quote($distinct).')' : '');
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
source/Spiral/Database/Drivers/Postgres/PostgresInsertQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         }
36 36
 
37 37
         //Resolve table primary key if any
38
-        $primary = $driver->getPrimary($this->database->getPrefix() . $this->table);
38
+        $primary = $driver->getPrimary($this->database->getPrefix().$this->table);
39 39
 
40 40
         if (empty($compiler)) {
41 41
             $compiler = $this->compiler->resetQuoter();
Please login to merge, or discard this patch.
source/Spiral/Database/Entities/Quoter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
      */
95 95
     protected function expression(string $identifier): string
96 96
     {
97
-        return preg_replace_callback('/([a-z][0-9_a-z\.]*\(?)/i', function ($match) {
97
+        return preg_replace_callback('/([a-z][0-9_a-z\.]*\(?)/i', function($match) {
98 98
             $identifier = $match[1];
99 99
 
100 100
             //Function name
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     protected function aliasing(string $identifier, string $alias, bool $isTable): string
119 119
     {
120
-        $quoted = $this->quote($identifier, $isTable) . ' AS ' . $this->driver->identifier($alias);
120
+        $quoted = $this->quote($identifier, $isTable).' AS '.$this->driver->identifier($alias);
121 121
 
122 122
         if ($isTable && strpos($identifier, '.') === false) {
123 123
             //We have to apply operation post factum to prevent self aliasing (name AS name)
@@ -154,12 +154,12 @@  discard block
 block discarded – undo
154 154
     protected function unpaired(string $identifier, bool $isTable): string
155 155
     {
156 156
         if ($isTable && !isset($this->aliases[$identifier])) {
157
-            if (!isset($this->aliases[$this->prefix . $identifier])) {
157
+            if (!isset($this->aliases[$this->prefix.$identifier])) {
158 158
                 //Generating our alias
159
-                $this->aliases[$this->prefix . $identifier] = $identifier;
159
+                $this->aliases[$this->prefix.$identifier] = $identifier;
160 160
             }
161 161
 
162
-            $identifier = $this->prefix . $identifier;
162
+            $identifier = $this->prefix.$identifier;
163 163
         }
164 164
 
165 165
         return $this->driver->identifier($identifier);
Please login to merge, or discard this patch.