Completed
Push — master ( d7e590...c64771 )
by Johannes
02:22
created

TestConfig::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 10
rs 9.4285
cc 1
eloc 5
nc 1
nop 0
1
<?php
2
/**
3
 * Lichtenwallner  (https://lichtenwallner.at)
4
 *
5
 * @see https://github.com/jolicht/markdown-cms for the canonical source repository
6
 * @license https://github.com/jolicht/markdown-cms/blob/master/LICENSE MIT
7
 * @copyright Copyright (c) Johannes Lichtenwallner
8
 */
9
declare(strict_types = 1);
10
namespace JolichtTest\MarkdownCms;
11
12
class TestConfig
13
{
14
    public function __invoke()
15
    {
16
        return [
17
            'markdown_cms' => [
18
                'options' => [
19
                    'content_dir' => 'test/_files',
20
                ],
21
            ],
22
        ];
23
    }
24
25
}