@@ -29,7 +29,6 @@ |
||
| 29 | 29 | use Eccube\Controller\AbstractController; |
| 30 | 30 | use Eccube\Exception\PluginException; |
| 31 | 31 | use Eccube\Util\Str; |
| 32 | -use Monolog\Logger; |
|
| 33 | 32 | use Symfony\Component\Filesystem\Filesystem; |
| 34 | 33 | use Symfony\Component\Finder\Finder; |
| 35 | 34 | use Symfony\Component\HttpFoundation\Request; |
@@ -347,6 +347,9 @@ |
||
| 347 | 347 | flush(); |
| 348 | 348 | } |
| 349 | 349 | |
| 350 | + /** |
|
| 351 | + * @param InstallApplication $app |
|
| 352 | + */ |
|
| 350 | 353 | private function checkModules($app) |
| 351 | 354 | { |
| 352 | 355 | foreach ($this->required_modules as $module) { |
@@ -1373,7 +1373,6 @@ |
||
| 1373 | 1373 | /** |
| 1374 | 1374 | * フォームの情報からお届け先のインデックスを返す |
| 1375 | 1375 | * |
| 1376 | - * @param Application $app |
|
| 1377 | 1376 | * @param mixed $CustomerAddressData |
| 1378 | 1377 | * @return int |
| 1379 | 1378 | */ |
@@ -18,18 +18,9 @@ |
||
| 18 | 18 | use Doctrine\DBAL\Platforms\PostgreSqlPlatform; |
| 19 | 19 | use Doctrine\DBAL\Platforms\SQLAnywherePlatform; |
| 20 | 20 | use Doctrine\DBAL\Platforms\SQLServerPlatform; |
| 21 | -use Doctrine\ORM\Query\AST\ArithmeticExpression; |
|
| 22 | -use Doctrine\ORM\Query\AST\ArithmeticFactor; |
|
| 23 | -use Doctrine\ORM\Query\AST\ArithmeticTerm; |
|
| 24 | -use Doctrine\ORM\Query\AST\Literal; |
|
| 25 | 21 | use Doctrine\ORM\Query\AST\OrderByClause; |
| 26 | -use Doctrine\ORM\Query\AST\OrderByItem; |
|
| 27 | 22 | use Doctrine\ORM\Query\AST\PartialObjectExpression; |
| 28 | -use Doctrine\ORM\Query\AST\PathExpression; |
|
| 29 | 23 | use Doctrine\ORM\Query\AST\SelectExpression; |
| 30 | -use Doctrine\ORM\Query\AST\SimpleArithmeticExpression; |
|
| 31 | -use Doctrine\ORM\Query\Expr\OrderBy; |
|
| 32 | -use Doctrine\ORM\Query\Expr\Select; |
|
| 33 | 24 | use Doctrine\ORM\Query\SqlWalker; |
| 34 | 25 | use Doctrine\ORM\Query\AST\SelectStatement; |
| 35 | 26 | |
@@ -20,7 +20,6 @@ |
||
| 20 | 20 | |
| 21 | 21 | use Doctrine\DBAL\Types\Type; |
| 22 | 22 | use Doctrine\ORM\Mapping\ClassMetadataInfo; |
| 23 | -use Doctrine\ORM\ORMException; |
|
| 24 | 23 | use Doctrine\ORM\Query; |
| 25 | 24 | use Doctrine\ORM\Query\TreeWalkerAdapter; |
| 26 | 25 | use Doctrine\ORM\Query\AST\Functions\IdentityFunction; |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | /** |
| 58 | 58 | * Constructor. |
| 59 | 59 | * |
| 60 | - * @param Query|QueryBuilder $query A Doctrine ORM query or query builder. |
|
| 60 | + * @param Query $query A Doctrine ORM query or query builder. |
|
| 61 | 61 | * @param boolean $fetchJoinCollection Whether the query joins a collection (true by default). |
| 62 | 62 | */ |
| 63 | 63 | public function __construct($query, $fetchJoinCollection = true) |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | } |
| 232 | 232 | |
| 233 | 233 | /** |
| 234 | - * @param \Eccube\Entity\ProductClass|integer $ProductClass |
|
| 234 | + * @param string $ProductClass |
|
| 235 | 235 | * @param integer $quantity |
| 236 | 236 | * @return \Eccube\Service\CartService |
| 237 | 237 | * @throws CartException |
@@ -658,7 +658,7 @@ discard block |
||
| 658 | 658 | * 在庫数と販売制限数ともに個数が超えていれば、少ない方を適用させてメッセージを表示する |
| 659 | 659 | * |
| 660 | 660 | * @param ProductClass $ProductClass |
| 661 | - * @param $productName |
|
| 661 | + * @param string $productName |
|
| 662 | 662 | * @param $quantity |
| 663 | 663 | * @return int チェック後に更新した個数 |
| 664 | 664 | */ |