Passed
Push — master ( 5f2e18...7c1d11 )
by Johannes
05:10
created

ContainerConfig::define()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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 Jolicht\MarkdownCms;
11
12
use Aura\Di\ContainerConfigInterface;
13
use Aura\Di\Container;
14
15
class ContainerConfig implements ContainerConfigInterface
16
{
17
    /**
18
     * Define
19
     * {@inheritDoc}
20
     * @see \Aura\Di\ContainerConfigInterface::define()
21
     */
22
    public function define(Container $di)
23
    {
24
        $di->set(\Sabre\Xml\Writer::class, $di->lazyNew(\Sabre\Xml\Writer::class));
25
    }
26
27
    /**
28
     * Modify
29
     * {@inheritDoc}
30
     * @see \Aura\Di\ContainerConfigInterface::modify()
31
     */
32
    public function modify(Container $di)
33
    {
34
    }
35
}