Failed Conditions
Branch experimental/sf (68db07)
by Kentaro
42:17 queued 33:39
created

TwigBlock::getTwigBlock()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 6
rs 10
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 Plugin\TwigUserFunc;
15
16
use Eccube\Common\EccubeTwigBlock;
17
18
class TwigBlock implements EccubeTwigBlock
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
19
{
20
    /**
21
     * @return array
22
     */
23
    public static function getTwigBlock()
24
    {
25
        return [
26
            '@TwigUserFunc/hello_block.twig',
27
        ];
28
    }
29
}
30