@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | /** |
51 | 51 | * {@inheritdoc} |
52 | 52 | */ |
53 | - public function onClassInject(IAnnotatable &$instance, Container $container, \ReflectionClass $class) |
|
53 | + public function onClassInject(IAnnotatable&$instance, Container $container, \ReflectionClass $class) |
|
54 | 54 | { |
55 | 55 | $this->injectedLog($this); |
56 | 56 | |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | $config = $this->annotation->config; |
59 | 59 | |
60 | 60 | if (!class_exists($driver)) { |
61 | - throw new DatabaseException("Database driver is undefined:" . $driver); |
|
61 | + throw new DatabaseException("Database driver is undefined:".$driver); |
|
62 | 62 | } |
63 | 63 | |
64 | - $configPath = $container->applicationInfo->applicationRoot . "/" . $config; |
|
64 | + $configPath = $container->applicationInfo->applicationRoot."/".$config; |
|
65 | 65 | $configRealPath = realpath($configPath); |
66 | 66 | if (!file_exists($configRealPath)) { |
67 | - throw new DatabaseException("Database config file is not found: " . $configPath); |
|
67 | + throw new DatabaseException("Database config file is not found: ".$configPath); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | $this->injectedContainer->filepath = $class->getFileName(); |
@@ -32,7 +32,7 @@ |
||
32 | 32 | /** |
33 | 33 | * {@inheritdoc} |
34 | 34 | */ |
35 | - public function onMethodInject(IAnnotatable &$instance, Container $container, \ReflectionMethod $method) |
|
35 | + public function onMethodInject(IAnnotatable&$instance, Container $container, \ReflectionMethod $method) |
|
36 | 36 | { |
37 | 37 | $this->injectedLog($this); |
38 | 38 |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | /** |
80 | 80 | * {@inheritdoc} |
81 | 81 | */ |
82 | - public function onMethodInject(IAnnotatable &$instance, Container $container, \ReflectionMethod $method) |
|
82 | + public function onMethodInject(IAnnotatable&$instance, Container $container, \ReflectionMethod $method) |
|
83 | 83 | { |
84 | 84 | $this->injectedLog($this); |
85 | 85 | |
@@ -94,22 +94,22 @@ discard block |
||
94 | 94 | |
95 | 95 | for ($i = 0; $i < count($allowMethods); $i++) { |
96 | 96 | if (!preg_match("/^(?:(?:P(?:OS|U)|GE)T|(?:p(?:os|u)|ge)t|DELETE|delete)$/", $allowMethods[$i])) { |
97 | - $errorMsg = "Invalid value '" . $allowMethods[$i] . "' in 'allowMethod' attribute of @Header."; |
|
97 | + $errorMsg = "Invalid value '".$allowMethods[$i]."' in 'allowMethod' attribute of @Header."; |
|
98 | 98 | throw new AnnotationException($errorMsg); |
99 | 99 | } |
100 | 100 | $allowMethods[$i] = strtoupper($allowMethods[$i]); |
101 | 101 | } |
102 | 102 | |
103 | 103 | $action = $this->camel2snake($container->router->action); |
104 | - $classpathWithAction = $method->class . "#" . $action; |
|
104 | + $classpathWithAction = $method->class."#".$action; |
|
105 | 105 | |
106 | 106 | // 複数指定した場合、一つでも許可されていればOK |
107 | 107 | if (!$this->inArray($container->request->requestMethod, $allowMethods)) { |
108 | - $errorMsg = "Not allowed request method '" . $container->request->requestMethod . "' in " . $classpathWithAction; |
|
108 | + $errorMsg = "Not allowed request method '".$container->request->requestMethod."' in ".$classpathWithAction; |
|
109 | 109 | throw new InvalidRequestException($errorMsg); |
110 | 110 | } |
111 | 111 | |
112 | - $this->logger->debug("Accepted request method '" . $container->request->requestMethod . "' in " . $classpathWithAction); |
|
112 | + $this->logger->debug("Accepted request method '".$container->request->requestMethod."' in ".$classpathWithAction); |
|
113 | 113 | |
114 | 114 | if ($ext !== null) { |
115 | 115 | $contentType = $this->contentTypeList[$ext]; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $errorMsg = "Invalid value '$ext' in 'contentType' attribute of @Header."; |
118 | 118 | throw new AnnotationException($errorMsg); |
119 | 119 | } |
120 | - $this->logger->debug("Accepted contentType '$ext' in " . $classpathWithAction); |
|
120 | + $this->logger->debug("Accepted contentType '$ext' in ".$classpathWithAction); |
|
121 | 121 | } |
122 | 122 | } |
123 | 123 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | /** |
36 | 36 | * {@inheritdoc} |
37 | 37 | */ |
38 | - public function onPropertyInject(IAnnotatable &$instance, Container $container, \ReflectionProperty $property) |
|
38 | + public function onPropertyInject(IAnnotatable&$instance, Container $container, \ReflectionProperty $property) |
|
39 | 39 | { |
40 | 40 | $this->injectedLog($this); |
41 | 41 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | } |
79 | 79 | } else { |
80 | 80 | // 不明な属性が指定された場合、警告を出す |
81 | - $key = $property->class . "." . $property->name; |
|
81 | + $key = $property->class.".".$property->name; |
|
82 | 82 | $this->logger->warn("An unknown attribute is specified in $key."); |
83 | 83 | } |
84 | 84 | } |
@@ -50,13 +50,13 @@ |
||
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 | |
57 | 57 | $aliasMethodName = $this->annotation->name; |
58 | 58 | if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]{0,}$/', $aliasMethodName)) { |
59 | - throw new AnnotationException("Alias method is invalid: " . $aliasMethodName); |
|
59 | + throw new AnnotationException("Alias method is invalid: ".$aliasMethodName); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | $this->injectedContainer->{$aliasMethodName} = $method->name; |
@@ -18,5 +18,5 @@ |
||
18 | 18 | * @param Container 依存コンテナ |
19 | 19 | * @param ReflectionClass リフレクションクラスオブジェクト |
20 | 20 | */ |
21 | - public function onClassInject(IAnnotatable &$instance, Container $container, \ReflectionClass $class); |
|
21 | + public function onClassInject(IAnnotatable&$instance, Container $container, \ReflectionClass $class); |
|
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 | } |
@@ -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 | } |