Completed
Push — master ( 0c48af...84ef19 )
by Johannes
02:34
created

TestConfig   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 1
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 17
rs 10
c 2
b 0
f 1
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
                'content' => [
19
                    'all' => []
20
                ],
21
                'options' => [
22
                    'content_dir' => 'test/_files',
23
                ],
24
            ],
25
        ];
26
    }
27
28
}