Completed
Push — dev/store-tests ( 3e9e56...714865 )
by Kiyotaka
05:47
created

TopController::index2()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 24

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 2
dl 0
loc 24
rs 9.536
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of EC-CUBE
5
 *
6
 * Copyright(c) LOCKON CO.,LTD. All Rights Reserved.
7
 *
8
 * http://www.lockon.co.jp/
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Eccube\Controller;
15
16
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
17
use Symfony\Component\Routing\Annotation\Route;
18
19
class TopController extends AbstractController
20
{
21
    /**
22
     * @Route("/", name="homepage")
23
     * @Template("index.twig")
24
     */
25
    public function index()
26
    {
27
        return [];
28
    }
29
}
30