Completed
Push — 7.5 ( a0d1bd...8c0f68 )
by
unknown
25:22
created

DataAttributesExtensionTest::getExtensions()   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
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
5
 * @license For full copyright and license information view LICENSE file distributed with this source code.
6
 */
7
declare(strict_types=1);
8
9
namespace eZ\Publish\Core\MVC\Symfony\Templating\Tests\Twig\Extension;
10
11
use eZ\Publish\Core\MVC\Symfony\Templating\Twig\Extension\DataAttributesExtension;
12
use Twig\Test\IntegrationTestCase;
13
14
class DataAttributesExtensionTest extends IntegrationTestCase
15
{
16
    public function getExtensions(): array
17
    {
18
        return [
19
            new DataAttributesExtension(),
20
        ];
21
    }
22
23
    protected function getFixturesDir(): string
24
    {
25
        return __DIR__ . '/_fixtures/filters';
26
    }
27
}
28