Completed
Push — feature/0.7.0 ( 385c73...df772f )
by Ryuichi
03:38
created
WebStream/Http/Response.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
WebStream/Template/Basic.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -284,10 +284,10 @@
 block discarded – undo
284 284
         }
285 285
         // 実体参照化をもとに戻す。
286 286
         $map = array('>' => '>',
287
-                     '&lt;' => '<',
288
-                     '%20'  => ' ',
289
-                     '%24'  => '$',
290
-                     '%5C'  => '\\');
287
+                        '&lt;' => '<',
288
+                        '%20'  => ' ',
289
+                        '%24'  => '$',
290
+                        '%5C'  => '\\');
291 291
 
292 292
         // HTMLタグを補完する
293 293
         $content = <<< HTML
Please login to merge, or discard this patch.
WebStream/DI/ServiceLocator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
WebStream/Log/LoggerConfigurationManager.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,11 +68,11 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
WebStream/Core/CoreInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
WebStream/Core/CoreHelper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-    * {@inheritdoc}
62
+     * {@inheritdoc}
63 63
      */
64 64
     public function __customAnnotation(array $annotation)
65 65
     {
Please login to merge, or discard this patch.
WebStream/Core/CoreModel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     }
60 60
 
61 61
     /**
62
-    * {@inheritdoc}
62
+     * {@inheritdoc}
63 63
      */
64 64
     public function __customAnnotation(array $annotation)
65 65
     {
Please login to merge, or discard this patch.