@@ -143,7 +143,7 @@ |
||
143 | 143 | * |
144 | 144 | * @param array|null $arr previous cache data |
145 | 145 | * @param array $segments config name parse to array |
146 | - * @param mixed $val value to be set |
|
146 | + * @param ConfigEntity|null $val value to be set |
|
147 | 147 | * @return array |
148 | 148 | */ |
149 | 149 | protected function make($arr, $segments, $val) |
@@ -138,7 +138,7 @@ |
||
138 | 138 | * clear all just descendants vars |
139 | 139 | * |
140 | 140 | * @param ConfigEntity $config config object |
141 | - * @param array $excepts target to the except |
|
141 | + * @param string[] $excepts target to the except |
|
142 | 142 | * |
143 | 143 | * @return void |
144 | 144 | */ |
@@ -150,7 +150,7 @@ |
||
150 | 150 | * |
151 | 151 | * @param string $keyword match keyword(ex. name, email ..) |
152 | 152 | * @param string $ruleName rule name(ex. require, min, max ..) |
153 | - * @param callable $target validate target |
|
153 | + * @param \Closure $target validate target |
|
154 | 154 | * @param string|null $message rule failure message |
155 | 155 | * @return void |
156 | 156 | */ |
@@ -171,7 +171,7 @@ |
||
171 | 171 | /** |
172 | 172 | * get list of VirtualConnection |
173 | 173 | * |
174 | - * @return array |
|
174 | + * @return VirtualConnectionInterface[] |
|
175 | 175 | */ |
176 | 176 | public function connectors() |
177 | 177 | { |
@@ -88,7 +88,7 @@ |
||
88 | 88 | * create instance if not exists |
89 | 89 | * |
90 | 90 | * @param Container $container register's container |
91 | - * @return object |
|
91 | + * @return ProxyManager |
|
92 | 92 | */ |
93 | 93 | public static function instance(Container $container) |
94 | 94 | { |
@@ -72,7 +72,7 @@ |
||
72 | 72 | /** |
73 | 73 | * 모든 advisor의 목록을 반환한다. |
74 | 74 | * |
75 | - * @return \string[] |
|
75 | + * @return string[] |
|
76 | 76 | */ |
77 | 77 | public function getAll() |
78 | 78 | { |
@@ -92,11 +92,11 @@ |
||
92 | 92 | * 이 함수를 직접 호출하는 대신 intercept() 헬퍼함수를 사용하십시오. |
93 | 93 | * |
94 | 94 | * |
95 | - * @param array|string $pointCut advisor의 point cut을 지정한다. point cut은 [타겟클래스명]@[메소드명] 형태의 string 또는, |
|
95 | + * @param string $pointCut advisor의 point cut을 지정한다. point cut은 [타겟클래스명]@[메소드명] 형태의 string 또는, |
|
96 | 96 | * string array 형식을 가진다. |
97 | 97 | * 예: 'Document@insertDocument' 또는 |
98 | 98 | * ['Document@insertDocument', 'Document@updateDocument'] |
99 | - * @param array|string $advisorInfo advisor의 이름을 지정한다. 필요한 경우 before, after advisor의 이름을 지정하여 우선순위를 지정할 |
|
99 | + * @param string $advisorInfo advisor의 이름을 지정한다. 필요한 경우 before, after advisor의 이름을 지정하여 우선순위를 지정할 |
|
100 | 100 | * 수 있다. |
101 | 101 | * 예: 'spamfilter.insertDocument' - advisor 이름으로 spamfilter.insertDocument를 지정 |
102 | 102 | * ['spamfilter.insertDocument' => 'mailing.insertDocument'] - before advisor로 |
@@ -83,7 +83,7 @@ |
||
83 | 83 | * |
84 | 84 | * @param ProxyConfig $config 프록시 설정 |
85 | 85 | * |
86 | - * @return bool 클래스파일이 존재할 경우 true를 반환한다. |
|
86 | + * @return boolean|null 클래스파일이 존재할 경우 true를 반환한다. |
|
87 | 87 | */ |
88 | 88 | public function existProxyFile(ProxyConfig $config) |
89 | 89 | { |
@@ -41,7 +41,7 @@ |
||
41 | 41 | * @return string 플러그인 id |
42 | 42 | */ |
43 | 43 | /** |
44 | - * @return array|mixed |
|
44 | + * @return string |
|
45 | 45 | */ |
46 | 46 | public static function getId() |
47 | 47 | { |