Passed
Push — master ( 95f69d...fbcc8b )
by 世昌
02:08
created
suda/src/application/database/StatementSet.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     public function build(string $name): QueryStatement
58 58
     {
59 59
         if (array_key_exists($name, $this->config) === false) {
60
-            throw new ConfigurationException('missing statement @resource:' . $this->name . '#' . $name);
60
+            throw new ConfigurationException('missing statement @resource:'.$this->name.'#'.$name);
61 61
         }
62 62
         $config = $this->config[$name];
63 63
         return (new QueryStatementBuilder($this->access, $config))->build();
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                 return $config;
78 78
             }
79 79
         }
80
-        throw new ConfigurationException('missing statement @resource:' . $this->name);
80
+        throw new ConfigurationException('missing statement @resource:'.$this->name);
81 81
     }
82 82
 
83 83
     /**
Please login to merge, or discard this patch.