@@ -236,7 +236,7 @@ |
||
236 | 236 | { |
237 | 237 | // StatusCode |
238 | 238 | $headerMessage = 'HTTP/' . self::HTTP_VERSION . ' ' . |
239 | - $this->statusCode . ' ' . $this->status[$this->statusCode]; |
|
239 | + $this->statusCode . ' ' . $this->status[$this->statusCode]; |
|
240 | 240 | header($headerMessage); |
241 | 241 | |
242 | 242 | // Redirect |
@@ -284,10 +284,10 @@ |
||
284 | 284 | } |
285 | 285 | // 実体参照化をもとに戻す。 |
286 | 286 | $map = array('>' => '>', |
287 | - '<' => '<', |
|
288 | - '%20' => ' ', |
|
289 | - '%24' => '$', |
|
290 | - '%5C' => '\\'); |
|
287 | + '<' => '<', |
|
288 | + '%20' => ' ', |
|
289 | + '%24' => '$', |
|
290 | + '%5C' => '\\'); |
|
291 | 291 | |
292 | 292 | // HTMLタグを補完する |
293 | 293 | $content = <<< HTML |
@@ -68,11 +68,11 @@ |
||
68 | 68 | public function load() |
69 | 69 | { |
70 | 70 | $this->loadLogLevel() |
71 | - ->loadLogFilePath() |
|
72 | - ->loadRotateCycle() |
|
73 | - ->loadRotateSize() |
|
74 | - ->loadApplicationName() |
|
75 | - ->loadFormat(); |
|
71 | + ->loadLogFilePath() |
|
72 | + ->loadRotateCycle() |
|
73 | + ->loadRotateSize() |
|
74 | + ->loadApplicationName() |
|
75 | + ->loadFormat(); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -29,8 +29,8 @@ |
||
29 | 29 | public function __initialize(Container $container); |
30 | 30 | |
31 | 31 | /** |
32 | - * カスタムアノテーション情報を設定する |
|
33 | - * @param array<mixed> カスタムアノテーション情報 |
|
32 | + * カスタムアノテーション情報を設定する |
|
33 | + * @param array<mixed> カスタムアノテーション情報 |
|
34 | 34 | */ |
35 | 35 | public function __customAnnotation(array $annotation); |
36 | 36 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * {@inheritdoc} |
|
62 | + * {@inheritdoc} |
|
63 | 63 | */ |
64 | 64 | public function __customAnnotation(array $annotation) |
65 | 65 | { |
@@ -59,7 +59,7 @@ |
||
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
62 | - * {@inheritdoc} |
|
62 | + * {@inheritdoc} |
|
63 | 63 | */ |
64 | 64 | public function __customAnnotation(array $annotation) |
65 | 65 | { |
@@ -85,7 +85,7 @@ |
||
85 | 85 | } elseif ($this->router->staticFile !== null) { |
86 | 86 | $controller = new CoreController(); |
87 | 87 | $controller->inject('coreDelegator', $this->container->coreDelegator) |
88 | - ->inject('logger', $this->container->logger); |
|
88 | + ->inject('logger', $this->container->logger); |
|
89 | 89 | |
90 | 90 | $controller->__callStaticFile($this->router->staticFile); |
91 | 91 | } else { |
@@ -90,10 +90,10 @@ |
||
90 | 90 | |
91 | 91 | $controller = new $controllerClassPath(); |
92 | 92 | $controller->inject('request', $container->request) |
93 | - ->inject('response', $container->response) |
|
94 | - ->inject('session', $container->session) |
|
95 | - ->inject('coreDelegator', $container->coreDelegator) |
|
96 | - ->inject('logger', $container->logger); |
|
93 | + ->inject('response', $container->response) |
|
94 | + ->inject('session', $container->session) |
|
95 | + ->inject('coreDelegator', $container->coreDelegator) |
|
96 | + ->inject('logger', $container->logger); |
|
97 | 97 | |
98 | 98 | $container->logger->debug("Controller start."); |
99 | 99 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | $config = \Spyc::YAMLLoad($container->applicationInfo->applicationRoot . $container->applicationInfo->routeConfigPath); |
64 | 64 | $router = new Router($config, $container->request); |
65 | 65 | $router->inject('logger', $container->logger) |
66 | - ->inject('applicationInfo', $container->applicationInfo); |
|
66 | + ->inject('applicationInfo', $container->applicationInfo); |
|
67 | 67 | $router->resolve(); |
68 | 68 | |
69 | 69 | return $router->getRoutingResult(); |