@@ -56,7 +56,7 @@ |
||
56 | 56 | |
57 | 57 | /** |
58 | 58 | * JoinClause constructor. |
59 | - * @param $leftJoin |
|
59 | + * @param boolean $leftJoin |
|
60 | 60 | * @param $join |
61 | 61 | * @param $alias |
62 | 62 | * @param $conditionType |
@@ -37,7 +37,7 @@ |
||
37 | 37 | |
38 | 38 | /** |
39 | 39 | * OrderByClause constructor. |
40 | - * @param $sort |
|
40 | + * @param string $sort |
|
41 | 41 | * @param string $order |
42 | 42 | */ |
43 | 43 | function __construct($sort, $order = 'asc') |
@@ -53,6 +53,9 @@ |
||
53 | 53 | $this->params = $params; |
54 | 54 | } |
55 | 55 | |
56 | + /** |
|
57 | + * @param Expr\Comparison $expr |
|
58 | + */ |
|
56 | 59 | private static function newWhereClause($expr, $x, $y) |
57 | 60 | { |
58 | 61 | if ($y) { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | /** |
38 | 38 | * |
39 | 39 | * @param array $searchData |
40 | - * @return QueryBuilder |
|
40 | + * @return \Doctrine\ORM\QueryBuilder |
|
41 | 41 | */ |
42 | 42 | public function getQueryBuilderBySearchDataForAdmin($searchData) |
43 | 43 | { |
@@ -59,11 +59,17 @@ |
||
59 | 59 | */ |
60 | 60 | protected $formFactory; |
61 | 61 | |
62 | + /** |
|
63 | + * @param \Eccube\Application $app |
|
64 | + */ |
|
62 | 65 | protected function getSecurity($app) |
63 | 66 | { |
64 | 67 | return $this->tokenStorage; |
65 | 68 | } |
66 | 69 | |
70 | + /** |
|
71 | + * @param \Eccube\Application $app |
|
72 | + */ |
|
67 | 73 | protected function isTokenValid($app) |
68 | 74 | { |
69 | 75 | $csrf = $this->csrfTokenManager; |
@@ -270,6 +270,10 @@ discard block |
||
270 | 270 | return $str; |
271 | 271 | } |
272 | 272 | |
273 | + /** |
|
274 | + * @param string $topDir |
|
275 | + * @param Request $request |
|
276 | + */ |
|
273 | 277 | private function getTree($topDir, $request) |
274 | 278 | { |
275 | 279 | $finder = Finder::create()->in($topDir) |
@@ -307,6 +311,10 @@ discard block |
||
307 | 311 | return $tree; |
308 | 312 | } |
309 | 313 | |
314 | + /** |
|
315 | + * @param Application $app |
|
316 | + * @param string $nowDir |
|
317 | + */ |
|
310 | 318 | private function getFileList($app, $nowDir) |
311 | 319 | { |
312 | 320 | $topDir = $this->appConfig['user_data_realdir']; |
@@ -366,6 +374,9 @@ discard block |
||
366 | 374 | return (strpos($targetDir, $topDir) === 0); |
367 | 375 | } |
368 | 376 | |
377 | + /** |
|
378 | + * @return string |
|
379 | + */ |
|
369 | 380 | private function convertStrFromServer($target) |
370 | 381 | { |
371 | 382 | if ($this->encode == self::SJIS) { |
@@ -108,6 +108,9 @@ |
||
108 | 108 | ]; |
109 | 109 | } |
110 | 110 | |
111 | + /** |
|
112 | + * @param string $logFile |
|
113 | + */ |
|
111 | 114 | private function parseLogFile($logFile, $formData) |
112 | 115 | { |
113 | 116 | $log = array(); |
@@ -474,7 +474,7 @@ |
||
474 | 474 | * |
475 | 475 | * @param Application $app |
476 | 476 | * @param array $data リクエストパラメータ |
477 | - * @return array |
|
477 | + * @return \Symfony\Component\Validator\ConstraintViolationListInterface[] |
|
478 | 478 | */ |
479 | 479 | protected function customerValidation(Application $app, array $data) |
480 | 480 | { |
@@ -59,7 +59,6 @@ |
||
59 | 59 | protected $app; |
60 | 60 | |
61 | 61 | /** |
62 | - * @param array $config |
|
63 | 62 | */ |
64 | 63 | public function __construct() |
65 | 64 | { |