@@ -32,7 +32,7 @@ |
||
32 | 32 | public function addFilterConstraint(ClassMetadata $targetEntity, $targetTableAlias) |
33 | 33 | { |
34 | 34 | if ($targetEntity->reflClass->getName() === 'Eccube\Entity\ProductClass') { |
35 | - return $targetTableAlias . '.stock >= 1 OR ' . $targetTableAlias . '.stock_unlimited = 1'; |
|
35 | + return $targetTableAlias.'.stock >= 1 OR '.$targetTableAlias.'.stock_unlimited = 1'; |
|
36 | 36 | } else { |
37 | 37 | return ""; |
38 | 38 | } |
@@ -33,12 +33,12 @@ |
||
33 | 33 | { |
34 | 34 | // 決済処理中/購入処理中を除く. |
35 | 35 | if ($targetEntity->reflClass->getName() === 'Eccube\Entity\Order') { |
36 | - return $targetTableAlias . '.status <> 7 AND ' . $targetTableAlias . '.status <> 8'; |
|
36 | + return $targetTableAlias.'.status <> 7 AND '.$targetTableAlias.'.status <> 8'; |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | // 決済処理中/購入処理中を除く. |
40 | 40 | if ($targetEntity->reflClass->getName() === 'Eccube\Entity\Master\OrderStatus') { |
41 | - return $targetTableAlias . '.id <> 7 AND ' . $targetTableAlias . '.id <> 8'; |
|
41 | + return $targetTableAlias.'.id <> 7 AND '.$targetTableAlias.'.id <> 8'; |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | return ''; |
@@ -46,7 +46,7 @@ |
||
46 | 46 | public function addFilterConstraint(ClassMetadata $targetEntity, $targetTableAlias) |
47 | 47 | { |
48 | 48 | if ($targetEntity->hasField('del_flg') && !in_array($targetEntity->getName(), $this->getExcludes())) { |
49 | - return $targetTableAlias . '.del_flg = 0'; |
|
49 | + return $targetTableAlias.'.del_flg = 0'; |
|
50 | 50 | } else { |
51 | 51 | return ""; |
52 | 52 | } |
@@ -148,7 +148,7 @@ |
||
148 | 148 | 'required' => false, |
149 | 149 | 'value' => 1, |
150 | 150 | )) |
151 | - ->addEventListener(FormEvents::POST_SUBMIT, function ($event) { |
|
151 | + ->addEventListener(FormEvents::POST_SUBMIT, function($event) { |
|
152 | 152 | $form = $event->getForm(); |
153 | 153 | $data = $form->getData(); |
154 | 154 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | { |
34 | 34 | protected $config; |
35 | 35 | |
36 | - public function __construct ($config) |
|
36 | + public function __construct($config) |
|
37 | 37 | { |
38 | 38 | $this->config = $config; |
39 | 39 | } |
@@ -62,10 +62,10 @@ |
||
62 | 62 | } |
63 | 63 | |
64 | 64 | if (empty($options['lastname_name'])) { |
65 | - $options['lastname_name'] = $builder->getName() . '01'; |
|
65 | + $options['lastname_name'] = $builder->getName().'01'; |
|
66 | 66 | } |
67 | 67 | if (empty($options['firstname_name'])) { |
68 | - $options['firstname_name'] = $builder->getName() . '02'; |
|
68 | + $options['firstname_name'] = $builder->getName().'02'; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | $builder |
@@ -47,7 +47,7 @@ |
||
47 | 47 | new Assert\GreaterThanOrEqual(array('value' => 0)), |
48 | 48 | ); |
49 | 49 | |
50 | - $constraints = function (Options $options) use ($defaultValues) { |
|
50 | + $constraints = function(Options $options) use ($defaultValues) { |
|
51 | 51 | if (false !== $options['required']) { |
52 | 52 | return array_merge($defaultValues, array(new Assert\NotBlank())); |
53 | 53 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | $app = $this->app; |
48 | 48 | |
49 | 49 | $builder |
50 | - ->addEventListener(FormEvents::POST_SET_DATA, function ($event) use ($app) { |
|
50 | + ->addEventListener(FormEvents::POST_SET_DATA, function($event) use ($app) { |
|
51 | 51 | /** @var \Eccube\Entity\ShipmentItem $data */ |
52 | 52 | $data = $event->getData(); |
53 | 53 | /** @var \Symfony\Component\Form\Form $form */ |
@@ -17,8 +17,8 @@ |
||
17 | 17 | $config->registerMigrationsFromDirectory($migrationFilePath ); |
18 | 18 | $config->setMigrationsTableName(self::MIGRATION_TABLE_PREFIX.$pluginCode); |
19 | 19 | $migration = new Migration($config); |
20 | - // null 又は 'last' を渡すと最新バージョンまでマイグレートする |
|
21 | - // 0か'first'を渡すと最初に戻る |
|
20 | + // null 又は 'last' を渡すと最新バージョンまでマイグレートする |
|
21 | + // 0か'first'を渡すと最初に戻る |
|
22 | 22 | $migration->migrate($version, false); |
23 | 23 | |
24 | 24 |
@@ -9,12 +9,12 @@ |
||
9 | 9 | |
10 | 10 | CONST MIGRATION_TABLE_PREFIX = 'migration_'; |
11 | 11 | |
12 | - public function migrationSchema($app,$migrationFilePath,$pluginCode,$version=null) |
|
12 | + public function migrationSchema($app, $migrationFilePath, $pluginCode, $version = null) |
|
13 | 13 | { |
14 | 14 | $config = new Configuration($app['db']); |
15 | 15 | $config->setMigrationsNamespace('DoctrineMigrations'); |
16 | 16 | $config->setMigrationsDirectory($migrationFilePath); |
17 | - $config->registerMigrationsFromDirectory($migrationFilePath ); |
|
17 | + $config->registerMigrationsFromDirectory($migrationFilePath); |
|
18 | 18 | $config->setMigrationsTableName(self::MIGRATION_TABLE_PREFIX.$pluginCode); |
19 | 19 | $migration = new Migration($config); |
20 | 20 | // null 又は 'last' を渡すと最新バージョンまでマイグレートする |