| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 13 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 4 | ||
| Bugs | 1 | Features | 0 | 
| 1 | <?php | ||
| 16 | public function up(Schema $schema) | ||
| 17 |     { | ||
| 18 | // this up() migration is auto-generated, please modify it to your needs | ||
| 19 | $app = \Eccube\Application::getInstance(); | ||
| 20 | $PageLayout = $app['eccube.repository.page_layout']->findOneBy(array( | ||
| 21 | 'url' => 'contact', | ||
| 22 | 'name' => 'お問い合わせ(入力ページ)', | ||
| 23 | )); | ||
| 24 |         if ($PageLayout) { | ||
| 25 |             $PageLayout->setName('お問い合わせ(確認ページ)'); | ||
| 26 | $app['orm.em']->flush($PageLayout); | ||
| 27 | } | ||
| 28 | } | ||
| 29 | |||
| 41 |