Completed
Branch feature/0.7.0 (0808a6)
by Ryuichi
119:02 queued 74:09
created
WebStream/Core/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * アプリケーション共通で使用するクラスを初期化する
26
-     * @param Container DIコンテナ
26
+     * @param Container Container
27 27
      */
28 28
     public function __construct(Container $container)
29 29
     {
Please login to merge, or discard this patch.
WebStream/Database/ConnectionManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
     /**
26 26
      * constructor
27
-     * @param Container 依存コンテナ
27
+     * @param Container Container
28 28
      */
29 29
     public function __construct(Container $container)
30 30
     {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
     /**
55 55
      * 初期処理
56
-     * @param Container 依存コンテナ
56
+     * @param Container Container
57 57
      */
58 58
     private function initialize(Container $container)
59 59
     {
Please login to merge, or discard this patch.
WebStream/Database/DatabaseManager.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * constructor
40
-     * @param Container 依存コンテナ
40
+     * @param Container Container
41 41
      */
42 42
     public function __construct(Container $container)
43 43
     {
@@ -183,6 +183,7 @@  discard block
 block discarded – undo
183 183
      * クエリを設定する
184 184
      * @param string SQL
185 185
      * @param array<string> パラメータ
186
+     * @param string $sql
186 187
      */
187 188
     public function query($sql, array $bind = [])
188 189
     {
Please login to merge, or discard this patch.
WebStream/Database/Driver/DatabaseDriver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -113,6 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * SQLをセットしてステートメントを返却する
115 115
      * @param string SQL
116
+     * @param string $sql
116 117
      * @return object ステートメント
117 118
      */
118 119
     public function getStatement($sql)
Please login to merge, or discard this patch.
WebStream/Database/Query.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * SELECT
67
-     * @return object 取得結果
67
+     * @return Result 取得結果
68 68
      */
69 69
     public function select()
70 70
     {
Please login to merge, or discard this patch.
WebStream/Delegate/AnnotationDelegator.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * Constructor
35 35
      * @param CoreInterface インスタンス
36
-     * @param Container DIContainer
36
+     * @param Container Container
37 37
      */
38 38
     public function __construct(Container $container)
39 39
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      * @param object インスタンス
55 55
      * @param string メソッド
56 56
      * @param string アノテーションクラスパス
57
-     * @return Container コンテナ
57
+     * @return null|AnnotationContainer コンテナ
58 58
      */
59 59
     public function read($instance, $method = null, $classpath = null)
60 60
     {
Please login to merge, or discard this patch.
WebStream/Delegate/Resolver.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 
121 121
     /**
122 122
      * Viewを起動する
123
-     * @return CoreView Viewオブジェクト
123
+     * @return CoreExecuteDelegator Viewオブジェクト
124 124
      */
125 125
     public function runView()
126 126
     {
Please login to merge, or discard this patch.
WebStream/Delegate/Router.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * コンストラクタ
37
-     * @param Request リクエストオブジェクト
37
+     * @param Request Container
38 38
      */
39 39
     public function __construct(array $rules, Container $request)
40 40
     {
@@ -190,6 +190,7 @@  discard block
 block discarded – undo
190 190
     /**
191 191
      * コントローラを設定する
192 192
      * @param string コントローラ文字列
193
+     * @param string $controller
193 194
      */
194 195
     private function setController($controller)
195 196
     {
@@ -202,6 +203,7 @@  discard block
 block discarded – undo
202 203
     /**
203 204
      * アクションを設定する
204 205
      * @param string アクション文字列
206
+     * @param string $action
205 207
      */
206 208
     private function setAction($action)
207 209
     {
Please login to merge, or discard this patch.
WebStream/DI/Injector.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      * オブジェクトを注入する
18 18
      * @param string プロパティ名
19 19
      * @param mixed オブジェクト
20
+     * @param string $name
20 21
      * @return Injector
21 22
      */
22 23
     public function inject($name, $object)
Please login to merge, or discard this patch.