Completed
Push — master ( d7bf63...4d846d )
by Dmitry
40s
created
src/Plugin/UserClasses.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         }
37 37
 
38 38
         if (!is_subclass_of($class, Entity::class)) {
39
-            throw new Exception("Entity should extend " . Entity::class . " class");
39
+            throw new Exception("Entity should extend ".Entity::class." class");
40 40
         }
41 41
 
42 42
         $this->entityMapping[$space] = $class;
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
         }
52 52
 
53 53
         if (!is_subclass_of($class, Repository::class)) {
54
-            throw new Exception("Repository should extend " . Repository::class . " class");
54
+            throw new Exception("Repository should extend ".Repository::class." class");
55 55
         }
56 56
 
57 57
         $this->repositoryMapping[$space] = $class;
Please login to merge, or discard this patch.
src/Pool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             unset($this->mappers[$name]);
51 51
         }
52 52
         foreach ($this->repositories as $space => $repository) {
53
-            if (strpos($space, $name . '.') !== false) {
53
+            if (strpos($space, $name.'.') !== false) {
54 54
                 unset($this->repositories[$space]);
55 55
             }
56 56
         }
Please login to merge, or discard this patch.
src/Entity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
                 }
62 62
             }
63 63
         }
64
-        throw new BadMethodCallException("Call to undefined method " . get_class($this) . '::' . $name);
64
+        throw new BadMethodCallException("Call to undefined method ".get_class($this).'::'.$name);
65 65
     }
66 66
 
67 67
     public function sync(): Entity
Please login to merge, or discard this patch.
src/Procedure/FindOrCreate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         $index = $space->castIndex($query ?: $params);
17 17
         if ($index === null) {
18
-            throw new Exception("No valid index for " . json_encode($params));
18
+            throw new Exception("No valid index for ".json_encode($params));
19 19
         }
20 20
 
21 21
         $values = $space->getIndexValues($index, $params);
Please login to merge, or discard this patch.
src/Mapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     public function getPlugin($mixed)
23 23
     {
24 24
         if (!is_subclass_of($mixed, Plugin::class)) {
25
-            throw new Exception("Plugin should extend " . Plugin::class . " class");
25
+            throw new Exception("Plugin should extend ".Plugin::class." class");
26 26
         }
27 27
 
28 28
         $plugin = is_object($mixed) ? $mixed : new $mixed($this);
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         if ($plugin == $mixed && array_key_exists($class, $this->plugins)) {
32 32
             // overwrite plugin instance
33
-            throw new Exception($class . ' is registered');
33
+            throw new Exception($class.' is registered');
34 34
         }
35 35
 
36 36
         if (!array_key_exists($class, $this->plugins)) {
Please login to merge, or discard this patch.
src/Space.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
 
200 200
     public function isSpecial(): bool
201 201
     {
202
-        return in_array($this->id, [ ClientSpace::VSPACE_ID, ClientSpace::VINDEX_ID ]);
202
+        return in_array($this->id, [ClientSpace::VSPACE_ID, ClientSpace::VINDEX_ID]);
203 203
     }
204 204
 
205 205
     public function isSystem(): bool
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
         }
419 419
 
420 420
         if (!$suppressException) {
421
-            throw new Exception("No index on " . $this->name . ' for [' . implode(', ', array_keys($params)) . ']');
421
+            throw new Exception("No index on ".$this->name.' for ['.implode(', ', array_keys($params)).']');
422 422
         }
423 423
 
424 424
         return null;
Please login to merge, or discard this patch.
src/Plugin/Temporal.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
     private function getTimestamp($string)
506 506
     {
507 507
         if (Carbon::hasTestNow() || !array_key_exists($string, $this->timestamps)) {
508
-            if (strlen('' . $string) == 8 && is_numeric($string)) {
508
+            if (strlen(''.$string) == 8 && is_numeric($string)) {
509 509
                 $value = Carbon::createFromFormat('Ymd', $string)->setTime(0, 0, 0)->timestamp;
510 510
             } else {
511 511
                 $value = Carbon::parse($string)->timestamp;
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
             $this->mapper->getPlugin(Sequence::class);
550 550
         }
551 551
 
552
-        $this->mapper->getSchema()->once(__CLASS__ . '@entity', function (Mapper $mapper) {
552
+        $this->mapper->getSchema()->once(__CLASS__.'@entity', function(Mapper $mapper) {
553 553
             $this->mapper->getSchema()
554 554
                 ->createSpace('_temporal_entity', [
555 555
                     'id'   => 'unsigned',
Please login to merge, or discard this patch.
src/Plugin/Procedure.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function register($class)
36 36
     {
37 37
         if (!is_subclass_of($class, BaseProcedure::class)) {
38
-            throw new Exception("Procedure should extend " . BaseProcedure::class . ' class');
38
+            throw new Exception("Procedure should extend ".BaseProcedure::class.' class');
39 39
         }
40 40
         $this->initSchema();
41 41
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     private function initSchema()
71 71
     {
72
-        $this->mapper->getSchema()->once(__CLASS__, function ($mapper) {
72
+        $this->mapper->getSchema()->once(__CLASS__, function($mapper) {
73 73
             $mapper->getSchema()
74 74
                 ->createSpace('_procedure')
75 75
                 ->addProperties([
Please login to merge, or discard this patch.
src/Plugin/Annotation.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
                 $tags = $description->getTags('var');
159 159
 
160 160
                 if (!count($tags)) {
161
-                    throw new Exception("No var tag for " . $entity . '::' . $property->getName());
161
+                    throw new Exception("No var tag for ".$entity.'::'.$property->getName());
162 162
                 }
163 163
 
164 164
                 $byTypes = [];
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                 }
168 168
 
169 169
                 if (!array_key_exists('var', $byTypes)) {
170
-                    throw new Exception("No var tag for " . $entity . '::' . $property->getName());
170
+                    throw new Exception("No var tag for ".$entity.'::'.$property->getName());
171 171
                 }
172 172
 
173 173
                 $propertyName = $property->getName();
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
                         $space->addIndex($index);
239 239
                     } catch (Exception $e) {
240 240
                         $presentation = json_encode($properties['indexes'][$i]);
241
-                        throw new Exception("Failed to add index $presentation. " . $e->getMessage(), 0, $e);
241
+                        throw new Exception("Failed to add index $presentation. ".$e->getMessage(), 0, $e);
242 242
                     }
243 243
                 }
244 244
             }
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             }
250 250
             if (!count($space->getIndexes())) {
251 251
                 if (!$space->hasProperty('id')) {
252
-                    throw new Exception("No primary index on " . $space->getName());
252
+                    throw new Exception("No primary index on ".$space->getName());
253 253
                 }
254 254
                 $space->addIndex(['id']);
255 255
             }
Please login to merge, or discard this patch.