Completed
Push — master ( dee292...51d082 )
by Dmitry
13s
created
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
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         $this->presence[__CLASS__] = true;
84 84
 
85
-        $this->mapper->getSchema()->once(__CLASS__, function ($mapper) {
85
+        $this->mapper->getSchema()->once(__CLASS__, function($mapper) {
86 86
             $mapper->getSchema()
87 87
                 ->createSpace('_procedure')
88 88
                 ->addProperties([
Please login to merge, or discard this patch.