@@ -91,7 +91,7 @@ |
||
91 | 91 | } |
92 | 92 | } |
93 | 93 | |
94 | - $recursive = function ($config, $space = ' ') use (&$recursive, $output) { |
|
94 | + $recursive = function($config, $space = ' ') use (&$recursive, $output) { |
|
95 | 95 | foreach ($config as $key => $item) { |
96 | 96 | if (is_array($item)) { |
97 | 97 | $space = ' '; |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $this->output->writeln('------------------------------------------------------'); |
44 | 44 | $this->output->writeln('---Plugin Generator for Entity'); |
45 | 45 | $this->output->writeln('---[*] You need to create table schema first.'); |
46 | - $this->output->writeln('---[*]You can exit from Console Application, by typing ' . self::STOP_PROCESS . ' instead of typing another word.'); |
|
46 | + $this->output->writeln('---[*]You can exit from Console Application, by typing '.self::STOP_PROCESS.' instead of typing another word.'); |
|
47 | 47 | $this->output->writeln('------------------------------------------------------'); |
48 | 48 | $this->output->writeln(''); |
49 | 49 | } |
@@ -57,11 +57,11 @@ discard block |
||
57 | 57 | |
58 | 58 | $pluginCode = $this->paramList['pluginCode']['value']; |
59 | 59 | $tableList = $this->paramList['tableList']['value']; |
60 | - $codePath = $this->app['config']['root_dir'] . '/app/Plugin/' . $pluginCode; |
|
60 | + $codePath = $this->app['config']['root_dir'].'/app/Plugin/'.$pluginCode; |
|
61 | 61 | |
62 | 62 | $dirList = array('Entity', 'Repository', 'Resource', 'Resource/doctrine', '/Resource/doctrine/migration'); |
63 | 63 | foreach ($dirList as $dirName) { |
64 | - $dirPath = $codePath . '/' . $dirName; |
|
64 | + $dirPath = $codePath.'/'.$dirName; |
|
65 | 65 | if (!is_dir($dirPath)) { |
66 | 66 | mkdir($dirPath); |
67 | 67 | } |
@@ -86,13 +86,13 @@ discard block |
||
86 | 86 | $migrationContent = $this->makeMigration($pluginCode, $migration); |
87 | 87 | $timeSt = date('YmdHis'); |
88 | 88 | $migrationContent = str_replace('[datetime]', $timeSt, $migrationContent); |
89 | - $path = '/Resource/doctrine/migration/Version' . $timeSt . '.php'; |
|
89 | + $path = '/Resource/doctrine/migration/Version'.$timeSt.'.php'; |
|
90 | 90 | $entityInfoList[] = array($path => $migrationContent); |
91 | 91 | } |
92 | 92 | |
93 | 93 | foreach ($entityInfoList as $entityInfo) { |
94 | 94 | foreach ($entityInfo as $path => $body) { |
95 | - $fullPath = $this->app['config']['root_dir'] . '/app/Plugin/' . $pluginCode . $path; |
|
95 | + $fullPath = $this->app['config']['root_dir'].'/app/Plugin/'.$pluginCode.$path; |
|
96 | 96 | file_put_contents($fullPath, $body); |
97 | 97 | if (is_file($fullPath)) { |
98 | 98 | $fsList['file'][$fullPath] = true; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | $this->output->writeln(''); |
124 | 124 | $this->output->writeln(' this files and folders were created.'); |
125 | 125 | foreach ($dirFileOk as $path) { |
126 | - $this->output->writeln('<info> - ' . $path . '</info>'); |
|
126 | + $this->output->writeln('<info> - '.$path.'</info>'); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | } |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | $nameFormated = ucfirst($this->toCamelCase($tableName)); |
135 | 135 | |
136 | 136 | $ret = array(); |
137 | - $ret['/Entity/' . $nameFormated . '.php'] = $this->getSrc($pluginCode, $TableInfo); |
|
137 | + $ret['/Entity/'.$nameFormated.'.php'] = $this->getSrc($pluginCode, $TableInfo); |
|
138 | 138 | |
139 | - $ret['/Resource/doctrine/Plugin.' . $pluginCode . '.Entity.' . $nameFormated . '.dcm.yml'] = $this->getConfig($pluginCode, $TableInfo); |
|
139 | + $ret['/Resource/doctrine/Plugin.'.$pluginCode.'.Entity.'.$nameFormated.'.dcm.yml'] = $this->getConfig($pluginCode, $TableInfo); |
|
140 | 140 | |
141 | - $ret['/Repository/' . $nameFormated . 'Repository.php'] = $this->getRepo($pluginCode, $TableInfo); |
|
141 | + $ret['/Repository/'.$nameFormated.'Repository.php'] = $this->getRepo($pluginCode, $TableInfo); |
|
142 | 142 | |
143 | 143 | return $ret; |
144 | 144 | } |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | private function getPluginList() |
202 | 202 | { |
203 | 203 | $ret = array(); |
204 | - $pluginDir = $this->app['config']['root_dir'] . '/app/Plugin'; |
|
204 | + $pluginDir = $this->app['config']['root_dir'].'/app/Plugin'; |
|
205 | 205 | $iterator = new \DirectoryIterator($pluginDir); |
206 | 206 | foreach ($iterator as $fileInfo) { |
207 | 207 | if ($fileInfo->isDot()) { |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | |
218 | 218 | private function toCamelCase($name) |
219 | 219 | { |
220 | - return lcfirst(implode('', array_map(function ($name) { |
|
220 | + return lcfirst(implode('', array_map(function($name) { |
|
221 | 221 | return ucfirst($name); |
222 | 222 | }, explode('_', $name)))); |
223 | 223 | } |
@@ -260,43 +260,43 @@ discard block |
||
260 | 260 | $varName = 'string'; |
261 | 261 | } |
262 | 262 | |
263 | - $tmpProp = '' . PHP_EOL; |
|
264 | - $tmpProp .= ' /**' . PHP_EOL; |
|
265 | - $tmpProp .= ' * @var ' . $varName . PHP_EOL; |
|
266 | - $tmpProp .= ' */' . PHP_EOL; |
|
267 | - $tmpProp .= ' private $' . $columnName . ';' . PHP_EOL; |
|
263 | + $tmpProp = ''.PHP_EOL; |
|
264 | + $tmpProp .= ' /**'.PHP_EOL; |
|
265 | + $tmpProp .= ' * @var '.$varName.PHP_EOL; |
|
266 | + $tmpProp .= ' */'.PHP_EOL; |
|
267 | + $tmpProp .= ' private $'.$columnName.';'.PHP_EOL; |
|
268 | 268 | |
269 | 269 | $prop[] = $tmpProp; |
270 | 270 | |
271 | - $tmpGetMethName = $this->toCamelCase('get_' . $columnName); |
|
271 | + $tmpGetMethName = $this->toCamelCase('get_'.$columnName); |
|
272 | 272 | |
273 | - $tmpGet = '' . PHP_EOL; |
|
274 | - $tmpGet .= ' /**' . PHP_EOL; |
|
275 | - $tmpGet .= ' * Get ' . $columnName . PHP_EOL; |
|
276 | - $tmpGet .= ' *' . PHP_EOL; |
|
277 | - $tmpGet .= ' * @return ' . $varName . PHP_EOL; |
|
278 | - $tmpGet .= ' */' . PHP_EOL; |
|
279 | - $tmpGet .= ' public function ' . $tmpGetMethName . '()' . PHP_EOL; |
|
280 | - $tmpGet .= ' {' . PHP_EOL; |
|
281 | - $tmpGet .= ' return $this->' . $columnName . ';' . PHP_EOL; |
|
282 | - $tmpGet .= ' }' . PHP_EOL; |
|
273 | + $tmpGet = ''.PHP_EOL; |
|
274 | + $tmpGet .= ' /**'.PHP_EOL; |
|
275 | + $tmpGet .= ' * Get '.$columnName.PHP_EOL; |
|
276 | + $tmpGet .= ' *'.PHP_EOL; |
|
277 | + $tmpGet .= ' * @return '.$varName.PHP_EOL; |
|
278 | + $tmpGet .= ' */'.PHP_EOL; |
|
279 | + $tmpGet .= ' public function '.$tmpGetMethName.'()'.PHP_EOL; |
|
280 | + $tmpGet .= ' {'.PHP_EOL; |
|
281 | + $tmpGet .= ' return $this->'.$columnName.';'.PHP_EOL; |
|
282 | + $tmpGet .= ' }'.PHP_EOL; |
|
283 | 283 | |
284 | 284 | $getMethods[] = $tmpGet; |
285 | 285 | |
286 | - $tmpSetMethName = $this->toCamelCase('set_' . $columnName); |
|
287 | - |
|
288 | - $tmpSet = '' . PHP_EOL; |
|
289 | - $tmpSet .= ' /**' . PHP_EOL; |
|
290 | - $tmpSet .= ' * Set ' . $columnName . PHP_EOL; |
|
291 | - $tmpSet .= ' *' . PHP_EOL; |
|
292 | - $tmpSet .= ' * @param ' . $varName . ' $' . $columnName . PHP_EOL; |
|
293 | - $tmpSet .= ' * @return ' . $nameFormated . PHP_EOL; |
|
294 | - $tmpSet .= ' */' . PHP_EOL; |
|
295 | - $tmpSet .= ' public function ' . $tmpSetMethName . '( $' . $columnName . ')' . PHP_EOL; |
|
296 | - $tmpSet .= ' {' . PHP_EOL; |
|
297 | - $tmpSet .= ' $this->' . $columnName . ' = $' . $columnName . ';' . PHP_EOL; |
|
298 | - $tmpSet .= ' return $this;' . PHP_EOL; |
|
299 | - $tmpSet .= ' }' . PHP_EOL; |
|
286 | + $tmpSetMethName = $this->toCamelCase('set_'.$columnName); |
|
287 | + |
|
288 | + $tmpSet = ''.PHP_EOL; |
|
289 | + $tmpSet .= ' /**'.PHP_EOL; |
|
290 | + $tmpSet .= ' * Set '.$columnName.PHP_EOL; |
|
291 | + $tmpSet .= ' *'.PHP_EOL; |
|
292 | + $tmpSet .= ' * @param '.$varName.' $'.$columnName.PHP_EOL; |
|
293 | + $tmpSet .= ' * @return '.$nameFormated.PHP_EOL; |
|
294 | + $tmpSet .= ' */'.PHP_EOL; |
|
295 | + $tmpSet .= ' public function '.$tmpSetMethName.'( $'.$columnName.')'.PHP_EOL; |
|
296 | + $tmpSet .= ' {'.PHP_EOL; |
|
297 | + $tmpSet .= ' $this->'.$columnName.' = $'.$columnName.';'.PHP_EOL; |
|
298 | + $tmpSet .= ' return $this;'.PHP_EOL; |
|
299 | + $tmpSet .= ' }'.PHP_EOL; |
|
300 | 300 | $setMethods[] = $tmpSet; |
301 | 301 | } |
302 | 302 | $ret .= PHP_EOL; |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | $ret .= PHP_EOL; |
307 | 307 | $ret .= join(PHP_EOL, $setMethods); |
308 | 308 | $ret .= PHP_EOL; |
309 | - $ret .= '}' . PHP_EOL; |
|
309 | + $ret .= '}'.PHP_EOL; |
|
310 | 310 | |
311 | 311 | |
312 | 312 | return $ret; |
@@ -317,16 +317,16 @@ discard block |
||
317 | 317 | $line = array(); |
318 | 318 | $line[] = '<?php'; |
319 | 319 | $line[] = '/*'; |
320 | - $line[] = ' * This file is part of ' . $pluginCode; |
|
320 | + $line[] = ' * This file is part of '.$pluginCode; |
|
321 | 321 | $line[] = ' *'; |
322 | 322 | $line[] = ' *'; |
323 | 323 | $line[] = ' * For the full copyright and license information, please view the LICENSE'; |
324 | 324 | $line[] = ' * file that was distributed with this source code.'; |
325 | 325 | $line[] = ' */'; |
326 | 326 | $line[] = ''; |
327 | - $line[] = 'namespace Plugin\\' . $pluginCode . '\Entity;'; |
|
327 | + $line[] = 'namespace Plugin\\'.$pluginCode.'\Entity;'; |
|
328 | 328 | $line[] = ''; |
329 | - $line[] = 'class ' . ucfirst($nameFormated) . ' extends \Eccube\Entity\AbstractEntity'; |
|
329 | + $line[] = 'class '.ucfirst($nameFormated).' extends \Eccube\Entity\AbstractEntity'; |
|
330 | 330 | $line[] = '{'; |
331 | 331 | $line[] = ' /**'; |
332 | 332 | $line[] = ' * @return string'; |
@@ -410,10 +410,10 @@ discard block |
||
410 | 410 | } |
411 | 411 | |
412 | 412 | $yml = array( |
413 | - 'Plugin\\' . $pluginCode . '\Entity\\' . ucfirst($nameFormated) => array( |
|
413 | + 'Plugin\\'.$pluginCode.'\Entity\\'.ucfirst($nameFormated) => array( |
|
414 | 414 | 'type' => 'entity', |
415 | 415 | 'table' => $TableInfo->getName(), |
416 | - 'repositoryClass' => 'Plugin\\' . $pluginCode . '\Repository\\' . ucfirst($nameFormated) . 'Repository', |
|
416 | + 'repositoryClass' => 'Plugin\\'.$pluginCode.'\Repository\\'.ucfirst($nameFormated).'Repository', |
|
417 | 417 | 'id' => array( |
418 | 418 | 'id' => $id |
419 | 419 | ), |
@@ -431,24 +431,24 @@ discard block |
||
431 | 431 | $line = array(); |
432 | 432 | $line[] = '<?php'; |
433 | 433 | $line[] = '/*'; |
434 | - $line[] = ' * This file is part of ' . $pluginCode; |
|
434 | + $line[] = ' * This file is part of '.$pluginCode; |
|
435 | 435 | $line[] = ' *'; |
436 | 436 | $line[] = ' *'; |
437 | 437 | $line[] = ' * For the full copyright and license information, please view the LICENSE'; |
438 | 438 | $line[] = ' * file that was distributed with this source code.'; |
439 | 439 | $line[] = ' */'; |
440 | 440 | $line[] = ''; |
441 | - $line[] = 'namespace Plugin\\' . $pluginCode . '\Repository;'; |
|
441 | + $line[] = 'namespace Plugin\\'.$pluginCode.'\Repository;'; |
|
442 | 442 | $line[] = ''; |
443 | 443 | $line[] = 'use Doctrine\ORM\EntityRepository;'; |
444 | 444 | $line[] = ''; |
445 | 445 | $line[] = '/**'; |
446 | - $line[] = ' * ' . ucfirst($nameFormated); |
|
446 | + $line[] = ' * '.ucfirst($nameFormated); |
|
447 | 447 | $line[] = ' *'; |
448 | 448 | $line[] = ' * This class was generated by the Doctrine ORM. Add your own custom'; |
449 | 449 | $line[] = ' * repository methods below.'; |
450 | 450 | $line[] = ' */'; |
451 | - $line[] = 'class ' . ucfirst($nameFormated) . 'Repository extends EntityRepository'; |
|
451 | + $line[] = 'class '.ucfirst($nameFormated).'Repository extends EntityRepository'; |
|
452 | 452 | $line[] = '{'; |
453 | 453 | $line[] = ''; |
454 | 454 | $line[] = '}'; |
@@ -459,21 +459,21 @@ discard block |
||
459 | 459 | private function makeMigration($pluginCode, $migration) |
460 | 460 | { |
461 | 461 | if ($this->paramList['supportFlag']['value']) { |
462 | - $migrationFileCont = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/MigrationVersionSupport.php'); |
|
462 | + $migrationFileCont = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/MigrationVersionSupport.php'); |
|
463 | 463 | } else { |
464 | - $migrationFileCont = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/MigrationVersion.php'); |
|
464 | + $migrationFileCont = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/MigrationVersion.php'); |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | $entityList = $this->createEntityList($pluginCode, $migration); |
468 | 468 | |
469 | - $entityListStr = join(',' . PHP_EOL, $entityList); |
|
469 | + $entityListStr = join(','.PHP_EOL, $entityList); |
|
470 | 470 | $migrationFileCont = str_replace('[entityList]', $entityListStr, $migrationFileCont); |
471 | 471 | |
472 | 472 | if ($this->paramList['supportFlag']['value']) { |
473 | 473 | $createParts = $this->makeCreateParts($migration); |
474 | 474 | $tableNameArr = array(); |
475 | 475 | foreach ($createParts as $tableName => $tableArr) { |
476 | - $tableNameArr[] = ' $this->createTable' . $tableName . '($schema);'; |
|
476 | + $tableNameArr[] = ' $this->createTable'.$tableName.'($schema);'; |
|
477 | 477 | } |
478 | 478 | $tableNameStr = join(PHP_EOL, $tableNameArr); |
479 | 479 | $migrationFileCont = str_replace('[createTable]', $tableNameStr, $migrationFileCont); |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | { |
497 | 497 | $ret = array(); |
498 | 498 | foreach ($migration as $TableInfo) { |
499 | - $ret[] = " '" . 'Plugin\\' . $pluginCode . '\Entity\\' . ucfirst($this->getShortClassName($TableInfo->getName())) . "'"; |
|
499 | + $ret[] = " '".'Plugin\\'.$pluginCode.'\Entity\\'.ucfirst($this->getShortClassName($TableInfo->getName()))."'"; |
|
500 | 500 | } |
501 | 501 | return $ret; |
502 | 502 | } |
@@ -513,14 +513,14 @@ discard block |
||
513 | 513 | $nameFormated = $this->getShortClassName($TableInfo->getName()); |
514 | 514 | $tmp = array(); |
515 | 515 | $tmp[] = PHP_EOL; |
516 | - $tmp[] = ' public function createTable' . ucfirst($nameFormated) . '(Schema $schema)'; |
|
516 | + $tmp[] = ' public function createTable'.ucfirst($nameFormated).'(Schema $schema)'; |
|
517 | 517 | $tmp[] = ' {'; |
518 | - $tmp[] = ' $table = $schema->createTable(\'' . $TableInfo->getName() . '\');'; |
|
518 | + $tmp[] = ' $table = $schema->createTable(\''.$TableInfo->getName().'\');'; |
|
519 | 519 | $columns = $TableInfo->getColumns(); |
520 | 520 | foreach ($columns as $column) { |
521 | 521 | |
522 | 522 | $typeName = $column->getType()->getName(); |
523 | - $tmp[] = ' $table->addColumn(\'' . $column->getName() . '\', \'' . $typeName . '\', array('; |
|
523 | + $tmp[] = ' $table->addColumn(\''.$column->getName().'\', \''.$typeName.'\', array('; |
|
524 | 524 | $param = array(); |
525 | 525 | if ($column->getNotNull()) { |
526 | 526 | $param['notnull'] = 'true'; |
@@ -531,16 +531,16 @@ discard block |
||
531 | 531 | $param['unsigned'] = 'true'; |
532 | 532 | } |
533 | 533 | if ($column->getDefault()) { |
534 | - $param['default'] = '\'' . $column->getDefault() . '\''; |
|
534 | + $param['default'] = '\''.$column->getDefault().'\''; |
|
535 | 535 | } |
536 | 536 | if ($column->getAutoincrement()) { |
537 | 537 | $param['autoincrement'] = 'true'; |
538 | 538 | } |
539 | 539 | if ($column->getComment()) { |
540 | - $param['comment'] = '\'' . str_replace('\'', '\\\'', $column->getComment()) . '\''; |
|
540 | + $param['comment'] = '\''.str_replace('\'', '\\\'', $column->getComment()).'\''; |
|
541 | 541 | } |
542 | 542 | if ($column->getLength()) { |
543 | - $param['length'] = '\'' . $column->getLength() . '\''; |
|
543 | + $param['length'] = '\''.$column->getLength().'\''; |
|
544 | 544 | } |
545 | 545 | |
546 | 546 | if ($typeName == 'decimal') { |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | $param['scale'] = $column->getScale(); |
549 | 549 | } |
550 | 550 | foreach ($param as $parKey => $parVal) { |
551 | - $tmp[] = ' \'' . $parKey . '\' => ' . $parVal . ','; |
|
551 | + $tmp[] = ' \''.$parKey.'\' => '.$parVal.','; |
|
552 | 552 | } |
553 | 553 | $tmp[] = ' ));'; |
554 | 554 | } |
@@ -558,20 +558,20 @@ discard block |
||
558 | 558 | if ($index->isPrimary()) { |
559 | 559 | $tmpCol = $index->getColumns(); |
560 | 560 | foreach ($tmpCol as $colName) { |
561 | - $tmp[] = ' $table->setPrimaryKey(array(\'' . $colName . '\'));'; |
|
561 | + $tmp[] = ' $table->setPrimaryKey(array(\''.$colName.'\'));'; |
|
562 | 562 | break; |
563 | 563 | } |
564 | 564 | } else { |
565 | 565 | $tmp[] = ' $columnNames = array();'; |
566 | 566 | foreach ($index->getColumns() as $IdentName) { |
567 | - $tmp[] = ' $columnNames[] = \'' . $IdentName . '\';'; |
|
567 | + $tmp[] = ' $columnNames[] = \''.$IdentName.'\';'; |
|
568 | 568 | } |
569 | - $tmp[] = ' $indexName = \'' . $index->getName() . '\';'; |
|
570 | - $tmp[] = ' $options = ' . var_export($index->getOptions(), true) . ';'; |
|
569 | + $tmp[] = ' $indexName = \''.$index->getName().'\';'; |
|
570 | + $tmp[] = ' $options = '.var_export($index->getOptions(), true).';'; |
|
571 | 571 | if ($index->isUnique()) { |
572 | 572 | $tmp[] = ' $table->addUniqueIndex($columnNames, $indexName, $options);'; |
573 | 573 | } else { |
574 | - $tmp[] = ' $flags = ' . var_export($index->getFlags(), true) . ';'; |
|
574 | + $tmp[] = ' $flags = '.var_export($index->getFlags(), true).';'; |
|
575 | 575 | $tmp[] = ' $table->addIndex($columnNames, $indexName,$flags, $options);'; |
576 | 576 | } |
577 | 577 | } |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | { |
589 | 589 | $ret = array(); |
590 | 590 | foreach ($migration as $TableInfo) { |
591 | - $ret[] = ' $schema->dropTable(\'' . $TableInfo->getName() . '\');'; |
|
591 | + $ret[] = ' $schema->dropTable(\''.$TableInfo->getName().'\');'; |
|
592 | 592 | } |
593 | 593 | |
594 | 594 | return $ret; |
@@ -160,7 +160,7 @@ |
||
160 | 160 | $this->paramList = array( |
161 | 161 | 'pluginCode' => array( |
162 | 162 | 'no' => 1, |
163 | - 'label' => '[+]Plugin Code: ', |
|
163 | + 'label' => '[+]Plugin Code: ', |
|
164 | 164 | 'value' => null, |
165 | 165 | 'name' => '[+]Please enter Plugin Name (only pascal case letters numbers are allowed)', |
166 | 166 | 'validation' => array( |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $this->output->writeln('------------------------------------------------------'); |
48 | 48 | $this->output->writeln('---Plugin Generator for Entity'); |
49 | 49 | $this->output->writeln('---[*] You need to create yaml file first.'); |
50 | - $this->output->writeln('---[*]You can exit from Console Application, by typing ' . self::STOP_PROCESS . ' instead of typing another word.'); |
|
50 | + $this->output->writeln('---[*]You can exit from Console Application, by typing '.self::STOP_PROCESS.' instead of typing another word.'); |
|
51 | 51 | $this->output->writeln('------------------------------------------------------'); |
52 | 52 | $this->output->writeln(''); |
53 | 53 | } |
@@ -62,11 +62,11 @@ discard block |
||
62 | 62 | $pluginCode = $this->paramList['pluginCode']['value']; |
63 | 63 | $yamlList = $this->paramList['entityList']['value']; |
64 | 64 | |
65 | - $codePath = $this->app['config']['root_dir'] . '/app/Plugin/' . $pluginCode; |
|
65 | + $codePath = $this->app['config']['root_dir'].'/app/Plugin/'.$pluginCode; |
|
66 | 66 | |
67 | 67 | $dirList = array('Entity', 'Repository', '/Resource/doctrine/migration'); |
68 | 68 | foreach ($dirList as $dirName) { |
69 | - $dirPath = $codePath . '/' . $dirName; |
|
69 | + $dirPath = $codePath.'/'.$dirName; |
|
70 | 70 | if (!is_dir($dirPath)) { |
71 | 71 | mkdir($dirPath); |
72 | 72 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | $metadetas = array(); |
80 | 80 | |
81 | 81 | |
82 | - $YamlDriver = new YamlDriver(array($codePath . '/Resource/doctrine')); |
|
82 | + $YamlDriver = new YamlDriver(array($codePath.'/Resource/doctrine')); |
|
83 | 83 | foreach ($yamlList as $pathYaml => $fullClassName) { |
84 | 84 | |
85 | 85 | $MetadataInfo = new ClassMetadataInfo($fullClassName); |
@@ -95,9 +95,9 @@ discard block |
||
95 | 95 | $EntityGenerator->setGenerateStubMethods(true); |
96 | 96 | $EntityGenerator->setUpdateEntityIfExists(false); |
97 | 97 | |
98 | - $pathClass = $this->app['config']['root_dir'] . '/app/'; |
|
98 | + $pathClass = $this->app['config']['root_dir'].'/app/'; |
|
99 | 99 | $EntityGenerator->generate(array($MetadataInfo), $pathClass); |
100 | - $pathClass .= str_replace('\\', DIRECTORY_SEPARATOR, $MetadataInfo->name) . '.php'; |
|
100 | + $pathClass .= str_replace('\\', DIRECTORY_SEPARATOR, $MetadataInfo->name).'.php'; |
|
101 | 101 | if (is_file($pathClass)) { |
102 | 102 | $fsList['file'][$pathClass] = true; |
103 | 103 | } else { |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | $migrationContent = $this->makeMigration($pluginCode, $metadetas); |
119 | 119 | $timeSt = date('YmdHis'); |
120 | 120 | $migrationContent = str_replace('[datetime]', $timeSt, $migrationContent); |
121 | - $migPath = $codePath . '/Resource/doctrine/migration/Version' . $timeSt . '.php'; |
|
121 | + $migPath = $codePath.'/Resource/doctrine/migration/Version'.$timeSt.'.php'; |
|
122 | 122 | |
123 | 123 | file_put_contents($migPath, $migrationContent); |
124 | 124 | if (is_file($migPath)) { |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | $this->output->writeln(''); |
151 | 151 | $this->output->writeln(' this files and folders were created.'); |
152 | 152 | foreach ($dirFileOk as $path) { |
153 | - $this->output->writeln('<info> - ' . $path . '</info>'); |
|
153 | + $this->output->writeln('<info> - '.$path.'</info>'); |
|
154 | 154 | } |
155 | 155 | } |
156 | 156 | } |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | |
202 | 202 | if ($this->entityList === null) { |
203 | 203 | $this->entityList = array(); |
204 | - $directory = $this->app['config']['root_dir'] . '/app/Plugin/' . $this->paramList['pluginCode']['value'] . '/Resource/doctrine/'; |
|
204 | + $directory = $this->app['config']['root_dir'].'/app/Plugin/'.$this->paramList['pluginCode']['value'].'/Resource/doctrine/'; |
|
205 | 205 | if (!is_dir($directory)) { |
206 | 206 | return $this->entityList; |
207 | 207 | } |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | private function getPluginList() |
223 | 223 | { |
224 | 224 | $ret = array(); |
225 | - $pluginDir = $this->app['config']['root_dir'] . '/app/Plugin'; |
|
225 | + $pluginDir = $this->app['config']['root_dir'].'/app/Plugin'; |
|
226 | 226 | $iterator = new \DirectoryIterator($pluginDir); |
227 | 227 | foreach ($iterator as $fileInfo) { |
228 | 228 | if ($fileInfo->isDot()) { |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | |
238 | 238 | private function toCamelCase($name) |
239 | 239 | { |
240 | - return lcfirst(implode('', array_map(function ($name) { |
|
240 | + return lcfirst(implode('', array_map(function($name) { |
|
241 | 241 | return ucfirst($name); |
242 | 242 | }, explode('_', $name)))); |
243 | 243 | } |
@@ -249,31 +249,31 @@ discard block |
||
249 | 249 | $line = array(); |
250 | 250 | $line[] = '<?php'; |
251 | 251 | $line[] = '/*'; |
252 | - $line[] = ' * This file is part of ' . $pluginCode; |
|
252 | + $line[] = ' * This file is part of '.$pluginCode; |
|
253 | 253 | $line[] = ' *'; |
254 | 254 | $line[] = ' *'; |
255 | 255 | $line[] = ' * For the full copyright and license information, please view the LICENSE'; |
256 | 256 | $line[] = ' * file that was distributed with this source code.'; |
257 | 257 | $line[] = ' */'; |
258 | 258 | $line[] = ''; |
259 | - $line[] = 'namespace Plugin\\' . $pluginCode . '\Repository;'; |
|
259 | + $line[] = 'namespace Plugin\\'.$pluginCode.'\Repository;'; |
|
260 | 260 | $line[] = ''; |
261 | 261 | $line[] = 'use Doctrine\ORM\EntityRepository;'; |
262 | 262 | $line[] = ''; |
263 | 263 | $line[] = '/**'; |
264 | - $line[] = ' * ' . $nameFormated; |
|
264 | + $line[] = ' * '.$nameFormated; |
|
265 | 265 | $line[] = ' *'; |
266 | 266 | $line[] = ' * This class was generated by the Doctrine ORM. Add your own custom'; |
267 | 267 | $line[] = ' * repository methods below.'; |
268 | 268 | $line[] = ' */'; |
269 | - $line[] = 'class ' . $nameFormated . 'Repository extends EntityRepository'; |
|
269 | + $line[] = 'class '.$nameFormated.'Repository extends EntityRepository'; |
|
270 | 270 | $line[] = '{'; |
271 | 271 | $line[] = ''; |
272 | 272 | $line[] = '}'; |
273 | 273 | $line[] = ''; |
274 | 274 | |
275 | 275 | $cont = join(PHP_EOL, $line); |
276 | - $filename = $this->app['config']['root_dir'] . '/app/Plugin/' . $pluginCode . '/Repository/' . $nameFormated . 'Repository.php'; |
|
276 | + $filename = $this->app['config']['root_dir'].'/app/Plugin/'.$pluginCode.'/Repository/'.$nameFormated.'Repository.php'; |
|
277 | 277 | file_put_contents($filename, $cont); |
278 | 278 | return $filename; |
279 | 279 | } |
@@ -281,20 +281,20 @@ discard block |
||
281 | 281 | private function makeMigration($pluginCode, $metadetas) |
282 | 282 | { |
283 | 283 | if ($this->paramList['supportFlag']['value']) { |
284 | - $migrationFileCont = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/MigrationVersionSupport.php'); |
|
284 | + $migrationFileCont = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/MigrationVersionSupport.php'); |
|
285 | 285 | } else { |
286 | - $migrationFileCont = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/MigrationVersion.php'); |
|
286 | + $migrationFileCont = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/MigrationVersion.php'); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | $entityList = $this->createEntityList($pluginCode, $metadetas); |
290 | 290 | |
291 | - $entityListStr = join(',' . PHP_EOL, $entityList); |
|
291 | + $entityListStr = join(','.PHP_EOL, $entityList); |
|
292 | 292 | $migrationFileCont = str_replace('[entityList]', $entityListStr, $migrationFileCont); |
293 | 293 | if ($this->paramList['supportFlag']['value']) { |
294 | 294 | $createParts = $this->makeCreateParts($metadetas); |
295 | 295 | $tableNameArr = array(); |
296 | 296 | foreach ($createParts as $tableName => $tableArr) { |
297 | - $tableNameArr[] = ' $this->createTable' . $tableName . '($schema);'; |
|
297 | + $tableNameArr[] = ' $this->createTable'.$tableName.'($schema);'; |
|
298 | 298 | } |
299 | 299 | $tableNameStr = join(PHP_EOL, $tableNameArr); |
300 | 300 | $migrationFileCont = str_replace('[createTable]', $tableNameStr, $migrationFileCont); |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | { |
318 | 318 | $ret = array(); |
319 | 319 | foreach ($migrations as $metadata) { |
320 | - $ret[] = " '" . 'Plugin\\' . $pluginCode . '\Entity\\' . ucfirst($this->getShortClassName($metadata->table['name'])) . "'"; |
|
320 | + $ret[] = " '".'Plugin\\'.$pluginCode.'\Entity\\'.ucfirst($this->getShortClassName($metadata->table['name']))."'"; |
|
321 | 321 | } |
322 | 322 | return $ret; |
323 | 323 | } |
@@ -335,14 +335,14 @@ discard block |
||
335 | 335 | $nameFormated = $this->getShortClassName($metadata->table['name']); |
336 | 336 | $tmp = array(); |
337 | 337 | $tmp[] = ''; |
338 | - $tmp[] = ' public function createTable' . ucfirst($nameFormated) . '(Schema $schema)'; |
|
338 | + $tmp[] = ' public function createTable'.ucfirst($nameFormated).'(Schema $schema)'; |
|
339 | 339 | $tmp[] = ' {'; |
340 | - $tmp[] = ' $table = $schema->createTable(\'' . $metadata->table['name'] . '\');'; |
|
340 | + $tmp[] = ' $table = $schema->createTable(\''.$metadata->table['name'].'\');'; |
|
341 | 341 | $columns = $metadata->fieldMappings; |
342 | 342 | foreach ($columns as $column) { |
343 | 343 | |
344 | 344 | $typeName = $column['type']; |
345 | - $tmp[] = ' $table->addColumn(\'' . $column['columnName'] . '\', \'' . $typeName . '\', array('; |
|
345 | + $tmp[] = ' $table->addColumn(\''.$column['columnName'].'\', \''.$typeName.'\', array('; |
|
346 | 346 | $param = array(); |
347 | 347 | if (isset($column['nullable']) && $column['nullable']) { |
348 | 348 | $param['notnull'] = 'true'; |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | } |
352 | 352 | |
353 | 353 | foreach ($param as $parKey => $parVal) { |
354 | - $tmp[] = ' \'' . $parKey . '\' => ' . $parVal . ','; |
|
354 | + $tmp[] = ' \''.$parKey.'\' => '.$parVal.','; |
|
355 | 355 | } |
356 | 356 | $tmp[] = ' ));'; |
357 | 357 | } |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | { |
370 | 370 | $ret = array(); |
371 | 371 | foreach ($metadetas as $metadata) { |
372 | - $ret[] = ' $schema->dropTable(\'' . $metadata->table['name'] . '\');'; |
|
372 | + $ret[] = ' $schema->dropTable(\''.$metadata->table['name'].'\');'; |
|
373 | 373 | } |
374 | 374 | |
375 | 375 | return $ret; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | $app->match('/plugin/[lower_code]/hello', 'Plugin\[code]\Controller\[code]Controller::index')->bind('plugin_[code]_hello'); |
34 | 34 | |
35 | 35 | // Form |
36 | - $app['form.types'] = $app->share($app->extend('form.types', function ($types) use ($app) { |
|
36 | + $app['form.types'] = $app->share($app->extend('form.types', function($types) use ($app) { |
|
37 | 37 | $types[] = new [code]ConfigType(); |
38 | 38 | |
39 | 39 | return $types; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | // } |
58 | 58 | |
59 | 59 | // ログファイル設定 |
60 | - $app['monolog.logger.[lower_code]'] = $app->share(function ($app) { |
|
60 | + $app['monolog.logger.[lower_code]'] = $app->share(function($app) { |
|
61 | 61 | |
62 | 62 | $logger = new $app['monolog.logger.class']('[lower_code]'); |
63 | 63 |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | { |
51 | 51 | $this->output->writeln('------------------------------------------------------'); |
52 | 52 | $this->output->writeln('---Plugin Generator'); |
53 | - $this->output->writeln('---[*]You can exit from Console Application, by typing ' . self::STOP_PROCESS . ' instead of typing another word.'); |
|
53 | + $this->output->writeln('---[*]You can exit from Console Application, by typing '.self::STOP_PROCESS.' instead of typing another word.'); |
|
54 | 54 | $this->output->writeln('------------------------------------------------------'); |
55 | 55 | $this->output->writeln(''); |
56 | 56 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | 'label' => '[+]Old version support: ', |
102 | 102 | 'value' => null, |
103 | 103 | 'name' => '[+]Do you want to support old versions too? [y/n]', |
104 | - 'show' => array(1 => 'Yes' ,0 => 'No'), |
|
104 | + 'show' => array(1 => 'Yes', 0 => 'No'), |
|
105 | 105 | 'validation' => array( |
106 | 106 | 'isRequired' => true, |
107 | 107 | 'choice' => array('y' => 1, 'n' => 0) |
@@ -148,13 +148,13 @@ discard block |
||
148 | 148 | $this->events = array(); |
149 | 149 | $routeEvents = array(); |
150 | 150 | if ($this->paramList['supportFlag']['value']) { |
151 | - $this->events = include $this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/eventsList.php'; |
|
151 | + $this->events = include $this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/eventsList.php'; |
|
152 | 152 | $routeEvents['eccube.event.controller.__route__.before'] = 'Controller__route__Before'; |
153 | 153 | $routeEvents['eccube.event.controller.__route__.after'] = 'Controller__route__After'; |
154 | 154 | $routeEvents['eccube.event.controller.__route__.finish'] = 'Controller__route__Finish'; |
155 | 155 | $routeEvents['eccube.event.render.__route__.before'] = 'Render__route__Before'; |
156 | 156 | } |
157 | - $this->events += include $this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/eventsListNew.php'; |
|
157 | + $this->events += include $this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/eventsListNew.php'; |
|
158 | 158 | |
159 | 159 | $routeEvents['eccube.event.route.__route__.request'] = 'Route__route__Request'; |
160 | 160 | $routeEvents['eccube.event.route.__route__.controller'] = 'Route__route__Controller'; |
@@ -214,11 +214,11 @@ discard block |
||
214 | 214 | $config['code'] = $code; |
215 | 215 | $config['version'] = $paramList['version']['value']; |
216 | 216 | if (!empty($paramList['hookPoints']['value'])) { |
217 | - $config['event'] = $code . 'Event'; |
|
217 | + $config['event'] = $code.'Event'; |
|
218 | 218 | } |
219 | - $config['service'] = array($code . 'ServiceProvider'); |
|
219 | + $config['service'] = array($code.'ServiceProvider'); |
|
220 | 220 | |
221 | - $codePath = $this->app['config']['root_dir'] . '/app/Plugin/' . $code; |
|
221 | + $codePath = $this->app['config']['root_dir'].'/app/Plugin/'.$code; |
|
222 | 222 | |
223 | 223 | $file = new Filesystem(); |
224 | 224 | $file->mkdir($codePath); |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | $fsList['dir'][$codePath] = false; |
229 | 229 | } |
230 | 230 | |
231 | - $srcPath = $codePath . '/config.yml'; |
|
231 | + $srcPath = $codePath.'/config.yml'; |
|
232 | 232 | file_put_contents($srcPath, Yaml::dump($config)); |
233 | 233 | if (is_file($srcPath)) { |
234 | 234 | $fsList['file'][$srcPath] = true; |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | $year = date('Y'); |
241 | 241 | |
242 | 242 | // PluginManager |
243 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/PluginManager.php'); |
|
243 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/PluginManager.php'); |
|
244 | 244 | $from = '/\[code\]/'; |
245 | 245 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
246 | 246 | $from = '/\[author\]/'; |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | $from = '/\[year\]/'; |
249 | 249 | $pluginFileAfter = preg_replace($from, $year, $pluginFileAfter); |
250 | 250 | |
251 | - $srcPath = $codePath . '/PluginManager.php'; |
|
251 | + $srcPath = $codePath.'/PluginManager.php'; |
|
252 | 252 | file_put_contents($srcPath, $pluginFileAfter); |
253 | 253 | if (is_file($srcPath)) { |
254 | 254 | $fsList['file'][$srcPath] = true; |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | } |
258 | 258 | |
259 | 259 | // ServiceProvider |
260 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/ServiceProvider.php'); |
|
260 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/ServiceProvider.php'); |
|
261 | 261 | $from = '/\[code\]/'; |
262 | 262 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
263 | 263 | $from = '/\[author\]/'; |
@@ -265,14 +265,14 @@ discard block |
||
265 | 265 | $from = '/\[year\]/'; |
266 | 266 | $pluginFileAfter = preg_replace($from, $year, $pluginFileAfter); |
267 | 267 | |
268 | - $file->mkdir($codePath . '/ServiceProvider'); |
|
269 | - if (is_dir($codePath . '/ServiceProvider')) { |
|
270 | - $fsList['dir'][$codePath . '/ServiceProvider'] = true; |
|
268 | + $file->mkdir($codePath.'/ServiceProvider'); |
|
269 | + if (is_dir($codePath.'/ServiceProvider')) { |
|
270 | + $fsList['dir'][$codePath.'/ServiceProvider'] = true; |
|
271 | 271 | } else { |
272 | - $fsList['dir'][$codePath . '/ServiceProvider'] = false; |
|
272 | + $fsList['dir'][$codePath.'/ServiceProvider'] = false; |
|
273 | 273 | } |
274 | 274 | |
275 | - $srcPath = $codePath . '/ServiceProvider/' . $code . 'ServiceProvider.php'; |
|
275 | + $srcPath = $codePath.'/ServiceProvider/'.$code.'ServiceProvider.php'; |
|
276 | 276 | file_put_contents($srcPath, $pluginFileAfter); |
277 | 277 | if (is_file($srcPath)) { |
278 | 278 | $fsList['file'][$srcPath] = true; |
@@ -281,7 +281,7 @@ discard block |
||
281 | 281 | } |
282 | 282 | |
283 | 283 | // ConfigController |
284 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/ConfigController.php'); |
|
284 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/ConfigController.php'); |
|
285 | 285 | $from = '/\[code\]/'; |
286 | 286 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
287 | 287 | $from = '/\[author\]/'; |
@@ -291,14 +291,14 @@ discard block |
||
291 | 291 | $from = '/\[code_name\]/'; |
292 | 292 | $pluginFileAfter = preg_replace($from, mb_strtolower($code), $pluginFileAfter); |
293 | 293 | |
294 | - $file->mkdir($codePath . '/Controller'); |
|
295 | - if (is_dir($codePath . '/Controller')) { |
|
296 | - $fsList['dir'][$codePath . '/Controller'] = true; |
|
294 | + $file->mkdir($codePath.'/Controller'); |
|
295 | + if (is_dir($codePath.'/Controller')) { |
|
296 | + $fsList['dir'][$codePath.'/Controller'] = true; |
|
297 | 297 | } else { |
298 | - $fsList['dir'][$codePath . '/Controller'] = false; |
|
298 | + $fsList['dir'][$codePath.'/Controller'] = false; |
|
299 | 299 | } |
300 | 300 | |
301 | - $srcPath = $codePath . '/Controller/ConfigController.php'; |
|
301 | + $srcPath = $codePath.'/Controller/ConfigController.php'; |
|
302 | 302 | file_put_contents($srcPath, $pluginFileAfter); |
303 | 303 | if (is_file($srcPath)) { |
304 | 304 | $fsList['file'][$srcPath] = true; |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | } |
308 | 308 | |
309 | 309 | // Controller |
310 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/Controller.php'); |
|
310 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/Controller.php'); |
|
311 | 311 | $from = '/\[code\]/'; |
312 | 312 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
313 | 313 | $from = '/\[author\]/'; |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | $from = '/\[code_name\]/'; |
318 | 318 | $pluginFileAfter = preg_replace($from, mb_strtolower($code), $pluginFileAfter); |
319 | 319 | |
320 | - $srcPath = $codePath . '/Controller/' . $code . 'Controller.php'; |
|
320 | + $srcPath = $codePath.'/Controller/'.$code.'Controller.php'; |
|
321 | 321 | file_put_contents($srcPath, $pluginFileAfter); |
322 | 322 | if (is_file($srcPath)) { |
323 | 323 | $fsList['file'][$srcPath] = true; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | } |
327 | 327 | |
328 | 328 | // Form |
329 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/ConfigType.php'); |
|
329 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/ConfigType.php'); |
|
330 | 330 | $from = '/\[code\]/'; |
331 | 331 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
332 | 332 | $from = '/\[author\]/'; |
@@ -336,15 +336,15 @@ discard block |
||
336 | 336 | $from = '/\[code_name\]/'; |
337 | 337 | $pluginFileAfter = preg_replace($from, mb_strtolower($code), $pluginFileAfter); |
338 | 338 | |
339 | - $file->mkdir($codePath . '/Form/Type'); |
|
340 | - if (is_dir($codePath . '/Form/Type')) { |
|
341 | - $fsList['dir'][$codePath . '/Form/Type'] = true; |
|
339 | + $file->mkdir($codePath.'/Form/Type'); |
|
340 | + if (is_dir($codePath.'/Form/Type')) { |
|
341 | + $fsList['dir'][$codePath.'/Form/Type'] = true; |
|
342 | 342 | } else { |
343 | - $fsList['dir'][$codePath . '/Form/Type'] = false; |
|
343 | + $fsList['dir'][$codePath.'/Form/Type'] = false; |
|
344 | 344 | } |
345 | 345 | |
346 | - $srcPath = $codePath . '/Form/Type/' . $code . 'ConfigType.php'; |
|
347 | - file_put_contents($codePath . '/Form/Type/' . $code . 'ConfigType.php', $pluginFileAfter); |
|
346 | + $srcPath = $codePath.'/Form/Type/'.$code.'ConfigType.php'; |
|
347 | + file_put_contents($codePath.'/Form/Type/'.$code.'ConfigType.php', $pluginFileAfter); |
|
348 | 348 | if (is_file($srcPath)) { |
349 | 349 | $fsList['file'][$srcPath] = true; |
350 | 350 | } else { |
@@ -352,18 +352,18 @@ discard block |
||
352 | 352 | } |
353 | 353 | |
354 | 354 | // Twig |
355 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/config.twig'); |
|
355 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/config.twig'); |
|
356 | 356 | $from = '/\[code\]/'; |
357 | 357 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
358 | 358 | |
359 | - $file->mkdir($codePath . '/Resource/template/admin'); |
|
360 | - if (is_dir($codePath . '/Resource/template/admin')) { |
|
361 | - $fsList['dir'][$codePath . '/Resource/template/admin'] = true; |
|
359 | + $file->mkdir($codePath.'/Resource/template/admin'); |
|
360 | + if (is_dir($codePath.'/Resource/template/admin')) { |
|
361 | + $fsList['dir'][$codePath.'/Resource/template/admin'] = true; |
|
362 | 362 | } else { |
363 | - $fsList['dir'][$codePath . '/Resource/template/admin'] = false; |
|
363 | + $fsList['dir'][$codePath.'/Resource/template/admin'] = false; |
|
364 | 364 | } |
365 | 365 | |
366 | - $srcPath = $codePath . '/Resource/template/admin/config.twig'; |
|
366 | + $srcPath = $codePath.'/Resource/template/admin/config.twig'; |
|
367 | 367 | file_put_contents($srcPath, $pluginFileAfter); |
368 | 368 | if (is_file($srcPath)) { |
369 | 369 | $fsList['file'][$srcPath] = true; |
@@ -372,18 +372,18 @@ discard block |
||
372 | 372 | } |
373 | 373 | |
374 | 374 | // index.twig |
375 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/index.twig'); |
|
375 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/index.twig'); |
|
376 | 376 | $from = '/\[code\]/'; |
377 | 377 | $pluginFileAfter = preg_replace($from, $code, $pluginFileBefore); |
378 | 378 | |
379 | - $file->mkdir($codePath . '/Resource/template/admin'); |
|
380 | - if (is_dir($codePath . '/Resource/template/admin')) { |
|
381 | - $fsList['dir'][$codePath . '/Resource/template/admin'] = true; |
|
379 | + $file->mkdir($codePath.'/Resource/template/admin'); |
|
380 | + if (is_dir($codePath.'/Resource/template/admin')) { |
|
381 | + $fsList['dir'][$codePath.'/Resource/template/admin'] = true; |
|
382 | 382 | } else { |
383 | - $fsList['dir'][$codePath . '/Resource/template/admin'] = false; |
|
383 | + $fsList['dir'][$codePath.'/Resource/template/admin'] = false; |
|
384 | 384 | } |
385 | 385 | |
386 | - $srcPath = $codePath . '/Resource/template/index.twig'; |
|
386 | + $srcPath = $codePath.'/Resource/template/index.twig'; |
|
387 | 387 | file_put_contents($srcPath, $pluginFileAfter); |
388 | 388 | if (is_file($srcPath)) { |
389 | 389 | $fsList['file'][$srcPath] = true; |
@@ -398,8 +398,8 @@ discard block |
||
398 | 398 | $events = $paramList['events']['value']; |
399 | 399 | if (count($events) > 0) { |
400 | 400 | foreach ($events as $eventKey => $eventConst) { |
401 | - $onEvents[$eventKey] = array(array('on' . $eventConst . ', NORMAL')); |
|
402 | - $onFunctions[] = 'on' . $eventConst; |
|
401 | + $onEvents[$eventKey] = array(array('on'.$eventConst.', NORMAL')); |
|
402 | + $onFunctions[] = 'on'.$eventConst; |
|
403 | 403 | } |
404 | 404 | } |
405 | 405 | |
@@ -407,14 +407,14 @@ discard block |
||
407 | 407 | $hookPoints = $paramList['hookPoints']['value']; |
408 | 408 | if (count($hookPoints)) { |
409 | 409 | foreach ($hookPoints as $hookKey => $hookConst) { |
410 | - $onName = 'on' . join(array_map('ucfirst', explode('_', strtolower($hookConst)))); |
|
411 | - $onEvents[$hookKey] = array(array($onName . ', NORMAL')); |
|
410 | + $onName = 'on'.join(array_map('ucfirst', explode('_', strtolower($hookConst)))); |
|
411 | + $onEvents[$hookKey] = array(array($onName.', NORMAL')); |
|
412 | 412 | $onFunctions[] = $onName; |
413 | 413 | } |
414 | 414 | } |
415 | 415 | |
416 | 416 | if (count($onEvents)) { |
417 | - $srcPath = $codePath . '/event.yml'; |
|
417 | + $srcPath = $codePath.'/event.yml'; |
|
418 | 418 | file_put_contents($srcPath, str_replace('\'', '', Yaml::dump($onEvents))); |
419 | 419 | if (is_file($srcPath)) { |
420 | 420 | $fsList['file'][$srcPath] = true; |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | $fsList['file'][$srcPath] = false; |
423 | 423 | } |
424 | 424 | |
425 | - $pluginFileBefore = file_get_contents($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/EventHookpoint2.php'); |
|
425 | + $pluginFileBefore = file_get_contents($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/EventHookpoint2.php'); |
|
426 | 426 | |
427 | 427 | // Event |
428 | 428 | $from = '/\[code\]/'; |
@@ -434,11 +434,11 @@ discard block |
||
434 | 434 | |
435 | 435 | $functions = ''; |
436 | 436 | foreach ($onFunctions as $functionName) { |
437 | - $functions .= " public function " . $functionName . "(EventArgs \$event)\n {\n }\n\n"; |
|
437 | + $functions .= " public function ".$functionName."(EventArgs \$event)\n {\n }\n\n"; |
|
438 | 438 | } |
439 | 439 | $from = '/\[hookpoint_function\]/'; |
440 | 440 | $pluginFileAfter = preg_replace($from, $functions, $pluginFileAfter); |
441 | - $srcPath = $codePath . '/' . $code . 'Event.php'; |
|
441 | + $srcPath = $codePath.'/'.$code.'Event.php'; |
|
442 | 442 | file_put_contents($srcPath, $pluginFileAfter); |
443 | 443 | if (is_file($srcPath)) { |
444 | 444 | $fsList['file'][$srcPath] = true; |
@@ -452,9 +452,9 @@ discard block |
||
452 | 452 | $config['name'] = $paramList['pluginName']['value']; |
453 | 453 | $config['code'] = $code; |
454 | 454 | $config['version'] = $paramList['version']['value']; |
455 | - $config['event'] = $code . 'Event'; |
|
456 | - $config['service'] = array($code . 'ServiceProvider'); |
|
457 | - $srcPath = $codePath . '/config.yml'; |
|
455 | + $config['event'] = $code.'Event'; |
|
456 | + $config['service'] = array($code.'ServiceProvider'); |
|
457 | + $srcPath = $codePath.'/config.yml'; |
|
458 | 458 | file_put_contents($srcPath, Yaml::dump($config)); |
459 | 459 | if (is_file($srcPath)) { |
460 | 460 | $fsList['file'][$srcPath] = true; |
@@ -463,8 +463,8 @@ discard block |
||
463 | 463 | } |
464 | 464 | |
465 | 465 | // LICENSE |
466 | - $srcPath = $codePath . '/LICENSE'; |
|
467 | - $file->copy($this->app['config']['root_dir'] . '/src/Eccube/Command/PluginCommand/Resource/LICENSE', $srcPath); |
|
466 | + $srcPath = $codePath.'/LICENSE'; |
|
467 | + $file->copy($this->app['config']['root_dir'].'/src/Eccube/Command/PluginCommand/Resource/LICENSE', $srcPath); |
|
468 | 468 | if (is_file($srcPath)) { |
469 | 469 | $fsList['file'][$srcPath] = true; |
470 | 470 | } else { |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | $this->output->writeln(''); |
494 | 494 | $this->output->writeln(' this files and folders were created.'); |
495 | 495 | foreach ($dirFileOk as $path) { |
496 | - $this->output->writeln('<info> - ' . $path . '</info>'); |
|
496 | + $this->output->writeln('<info> - '.$path.'</info>'); |
|
497 | 497 | } |
498 | 498 | } |
499 | 499 | |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | $this->output->writeln(''); |
502 | 502 | $this->output->writeln(' this files and folders was not created.'); |
503 | 503 | foreach ($dirFileOk as $path) { |
504 | - $this->output->writeln('<error> - ' . $path . '</error>'); |
|
504 | + $this->output->writeln('<error> - '.$path.'</error>'); |
|
505 | 505 | } |
506 | 506 | } |
507 | 507 | } |
@@ -524,9 +524,9 @@ discard block |
||
524 | 524 | $this->output->writeln(''); |
525 | 525 | $this->output->writeln('[+]Database'); |
526 | 526 | if ($Plugin->getId()) { |
527 | - $this->output->writeln('<info> Plugin information was added to table [DB.Plugin] (id=' . $Plugin->getId() . ')</info>'); |
|
527 | + $this->output->writeln('<info> Plugin information was added to table [DB.Plugin] (id='.$Plugin->getId().')</info>'); |
|
528 | 528 | } else { |
529 | - $this->output->writeln('<error> there was a problem inserting plugin information to table [DB.Plugin] (id=' . $Plugin->getId() . ')</error>'); |
|
529 | + $this->output->writeln('<error> there was a problem inserting plugin information to table [DB.Plugin] (id='.$Plugin->getId().')</error>'); |
|
530 | 530 | } |
531 | 531 | |
532 | 532 | $hookPoints = $paramList['hookPoints']['value']; |
@@ -537,7 +537,7 @@ discard block |
||
537 | 537 | $eventCount = 0; |
538 | 538 | foreach ($hookPoints as $hookKey => $hookConst) { |
539 | 539 | $PluginEventHandler = new PluginEventHandler(); |
540 | - $functionName = 'on' . join(array_map('ucfirst', explode('_', strtolower($hookConst)))); |
|
540 | + $functionName = 'on'.join(array_map('ucfirst', explode('_', strtolower($hookConst)))); |
|
541 | 541 | $PluginEventHandler->setPlugin($Plugin) |
542 | 542 | ->setEvent($hookKey) |
543 | 543 | ->setPriority($this->app['eccube.repository.plugin_event_handler']->calcNewPriority($hookKey, $functionName)) |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | $this->app['orm.em']->flush(); |
551 | 551 | if ($eventCount) { |
552 | 552 | $this->output->writeln(''); |
553 | - $this->output->writeln('<info> Plugin information was added to table [DB.PluginEventHandler] (inserts number=' . $eventCount . ') </info>'); |
|
553 | + $this->output->writeln('<info> Plugin information was added to table [DB.PluginEventHandler] (inserts number='.$eventCount.') </info>'); |
|
554 | 554 | } |
555 | 555 | } |
556 | 556 | } |
@@ -20,17 +20,17 @@ discard block |
||
20 | 20 | $app->register(new \Silex\Provider\MonologServiceProvider()); |
21 | 21 | |
22 | 22 | // Log |
23 | - $app['eccube.logger'] = $app->share(function ($app) { |
|
23 | + $app['eccube.logger'] = $app->share(function($app) { |
|
24 | 24 | return new Logger($app); |
25 | 25 | }); |
26 | 26 | |
27 | 27 | // ヘルパー作成 |
28 | - $app['eccube.monolog.helper'] = $app->share(function ($app) { |
|
28 | + $app['eccube.monolog.helper'] = $app->share(function($app) { |
|
29 | 29 | return new LogHelper($app); |
30 | 30 | }); |
31 | 31 | |
32 | 32 | // ログクラス作成ファクトリー |
33 | - $app['eccube.monolog.factory'] = $app->protect(function (array $channelValues) use ($app) { |
|
33 | + $app['eccube.monolog.factory'] = $app->protect(function(array $channelValues) use ($app) { |
|
34 | 34 | |
35 | 35 | $log = new $app['monolog.logger.class']($channelValues['name']); |
36 | 36 | |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | // monologの設定は除外 |
46 | 46 | unset($channels['monolog']); |
47 | 47 | foreach ($channels as $channel => $channelValues) { |
48 | - $app['monolog.logger.'.$channel] = $app->share(function ($app) use ($channelValues) { |
|
48 | + $app['monolog.logger.'.$channel] = $app->share(function($app) use ($channelValues) { |
|
49 | 49 | return $app['eccube.monolog.factory']($channelValues); |
50 | 50 | }); |
51 | 51 | } |
@@ -53,15 +53,15 @@ discard block |
||
53 | 53 | // MonologServiceProviderで定義されているmonolog.handlerの置換 |
54 | 54 | $channelValues = $app['config']['log']['channel']['monolog']; |
55 | 55 | $app['monolog.name'] = $channelValues['name']; |
56 | - $app['monolog.handler'] = $app->share(function ($app) use ($channelValues) { |
|
56 | + $app['monolog.handler'] = $app->share(function($app) use ($channelValues) { |
|
57 | 57 | return $app['eccube.monolog.helper']->getHandler($channelValues); |
58 | 58 | }); |
59 | 59 | |
60 | - $app['eccube.monolog.listener'] = $app->share(function () use ($app) { |
|
60 | + $app['eccube.monolog.listener'] = $app->share(function() use ($app) { |
|
61 | 61 | return new LogListener($app['eccube.logger']); |
62 | 62 | }); |
63 | 63 | |
64 | - $app['listener.requestdump'] = $app->share(function ($app) { |
|
64 | + $app['listener.requestdump'] = $app->share(function($app) { |
|
65 | 65 | return new \Eccube\EventListener\RequestDumpListener($app); |
66 | 66 | }); |
67 | 67 | } |
@@ -44,9 +44,9 @@ |
||
44 | 44 | */ |
45 | 45 | public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) |
46 | 46 | { |
47 | - return 'ROW_NUMBER() OVER(' . trim($sqlWalker->walkOrderByClause( |
|
47 | + return 'ROW_NUMBER() OVER('.trim($sqlWalker->walkOrderByClause( |
|
48 | 48 | $this->orderByClause |
49 | - )) . ')'; |
|
49 | + )).')'; |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -69,7 +69,7 @@ |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | $pathExpression = new PathExpression( |
72 | - PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, |
|
72 | + PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, |
|
73 | 73 | $identifierFieldName |
74 | 74 | ); |
75 | 75 | $pathExpression->type = $pathType; |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $pathType = PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION; |
90 | 90 | } |
91 | 91 | |
92 | - $pathExpression = new PathExpression(PathExpression::TYPE_STATE_FIELD | PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName); |
|
92 | + $pathExpression = new PathExpression(PathExpression::TYPE_STATE_FIELD|PathExpression::TYPE_SINGLE_VALUED_ASSOCIATION, $rootAlias, $identifierFieldName); |
|
93 | 93 | $pathExpression->type = $pathType; |
94 | 94 | |
95 | 95 | $count = $this->_getQuery()->getHint(self::HINT_PAGINATOR_ID_COUNT); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | array($pathExpression) |
101 | 101 | ); |
102 | 102 | $expression = new InExpression($arithmeticExpression); |
103 | - $expression->literals[] = new InputParameter(":" . self::PAGINATOR_ID_ALIAS); |
|
103 | + $expression->literals[] = new InputParameter(":".self::PAGINATOR_ID_ALIAS); |
|
104 | 104 | |
105 | 105 | } else { |
106 | 106 | $expression = new NullComparisonExpression($pathExpression); |