@@ -57,7 +57,7 @@ discard block |
||
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 |
||
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 | /** |