@@ -18,5 +18,5 @@ |
||
| 18 | 18 | * @param Container 依存コンテナ |
| 19 | 19 | * @param ReflectionProperty リフレクションプロパティオブジェクト |
| 20 | 20 | */ |
| 21 | - public function onPropertyInject(IAnnotatable &$instance, Container $container, \ReflectionProperty $property); |
|
| 21 | + public function onPropertyInject(IAnnotatable&$instance, Container $container, \ReflectionProperty $property); |
|
| 22 | 22 | } |
@@ -18,5 +18,5 @@ |
||
| 18 | 18 | * @param Container 依存コンテナ |
| 19 | 19 | * @param ReflectionMethod リフレクションメソッドオブジェクト |
| 20 | 20 | */ |
| 21 | - public function onMethodInject(IAnnotatable &$instance, Container $container, \ReflectionMethod $method); |
|
| 21 | + public function onMethodInject(IAnnotatable&$instance, Container $container, \ReflectionMethod $method); |
|
| 22 | 22 | } |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | protected function injectedLog(Annotation $class) |
| 33 | 33 | { |
| 34 | - $this->logger->debug("@" . get_class($class) . " injected."); |
|
| 34 | + $this->logger->debug("@".get_class($class)." injected."); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -31,6 +31,6 @@ |
||
| 31 | 31 | ]); |
| 32 | 32 | |
| 33 | 33 | $this->connection = DriverManager::getConnection($params, $config); |
| 34 | - $this->logger->debug(get_class($this) . " connect."); |
|
| 34 | + $this->logger->debug(get_class($this)." connect."); |
|
| 35 | 35 | } |
| 36 | 36 | } |
@@ -31,6 +31,6 @@ |
||
| 31 | 31 | ]); |
| 32 | 32 | |
| 33 | 33 | $this->connection = DriverManager::getConnection($params, $config); |
| 34 | - $this->logger->debug(get_class($this) . " connect."); |
|
| 34 | + $this->logger->debug(get_class($this)." connect."); |
|
| 35 | 35 | } |
| 36 | 36 | } |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | public function seek($offset) |
| 66 | 66 | { |
| 67 | 67 | if (!array_key_exists($offset, $this->values)) { |
| 68 | - throw new \OutOfBoundsException("Current cursor is out of range: " . $offset); |
|
| 68 | + throw new \OutOfBoundsException("Current cursor is out of range: ".$offset); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return $this->values[$offset]; |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | public function seek($offset) |
| 66 | 66 | { |
| 67 | 67 | if (!array_key_exists($offset, $this->values)) { |
| 68 | - throw new \OutOfBoundsException("Current cursor is out of range: " . $offset); |
|
| 68 | + throw new \OutOfBoundsException("Current cursor is out of range: ".$offset); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return $this->values[$offset]; |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | /** |
| 51 | 51 | * {@inheritdoc} |
| 52 | 52 | */ |
| 53 | - public function onMethodInject(IAnnotatable &$instance, Container $container, \ReflectionMethod $method) |
|
| 53 | + public function onMethodInject(IAnnotatable&$instance, Container $container, \ReflectionMethod $method) |
|
| 54 | 54 | { |
| 55 | 55 | $this->injectedLog($this); |
| 56 | 56 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | /** |
| 51 | 51 | * {@inheritdoc} |
| 52 | 52 | */ |
| 53 | - public function onMethodInject(IAnnotatable &$instance, Container $container, \ReflectionMethod $method) |
|
| 53 | + public function onMethodInject(IAnnotatable&$instance, Container $container, \ReflectionMethod $method) |
|
| 54 | 54 | { |
| 55 | 55 | $this->injectedLog($this); |
| 56 | 56 | |