@@ -15,7 +15,6 @@ |
||
15 | 15 | |
16 | 16 | use Doctrine\DBAL\Exception\ForeignKeyConstraintViolationException; |
17 | 17 | use Doctrine\ORM\QueryBuilder; |
18 | -use Eccube\Application; |
|
19 | 18 | use Eccube\Common\Constant; |
20 | 19 | use Eccube\Controller\AbstractController; |
21 | 20 | use Eccube\Entity\Master\CsvType; |
@@ -67,7 +67,7 @@ |
||
67 | 67 | * |
68 | 68 | * @param array $arrProps プロパティの情報を格納した連想配列 |
69 | 69 | * @param \ReflectionClass $parentClass 親のクラス. 本メソッドの内部的に使用します. |
70 | - * @param array $excludeAttribute 除外したいフィールド名の配列 |
|
70 | + * @param string[] $excludeAttribute 除外したいフィールド名の配列 |
|
71 | 71 | */ |
72 | 72 | public function setPropertiesFromArray(array $arrProps, array $excludeAttribute = [], \ReflectionClass $parentClass = null) |
73 | 73 | { |
@@ -155,7 +155,7 @@ |
||
155 | 155 | /** |
156 | 156 | * EntityにTraitを追加. |
157 | 157 | * |
158 | - * @param $entityTokens Tokens Entityのトークン |
|
158 | + * @param Tokens $entityTokens Tokens Entityのトークン |
|
159 | 159 | * @param $trait string 追加するTraitのFQCN |
160 | 160 | */ |
161 | 161 | private function addTrait($entityTokens, $trait) |
@@ -102,7 +102,7 @@ |
||
102 | 102 | ], |
103 | 103 | 'constraints' => [ |
104 | 104 | new Assert\Length([ |
105 | - 'max' => $this->eccubeConfig['eccube_name_len'], |
|
105 | + 'max' => $this->eccubeConfig['eccube_name_len'], |
|
106 | 106 | ]), |
107 | 107 | new Assert\Regex([ |
108 | 108 | 'pattern' => '/^[^\s ]+$/u', |