Completed
Push — master ( 2a510c...5bfa5e )
by Richard
03:56
created

Command::configure_runtime()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 12
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 2

Importance

Changes 0
Metric Value
cc 2
eloc 9
nc 2
nop 1
dl 0
loc 12
ccs 10
cts 10
cp 1
crap 2
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/******************************************************************************
3
 * An implementation of dicto (scg.unibe.ch/dicto) in and for PHP.
4
 * 
5
 * Copyright (c) 2016 Richard Klees <[email protected]>
6
 *
7
 * This software is licensed under The MIT License. You should have received 
8
 * a copy of the license along with the code.
9
 */
10
11
namespace Lechimp\Dicto\App;
12
13
use Symfony\Component\Console\Command\Command as SCommand;
14
15
/**
16
 * Base class for Commands.
17
 */
18
abstract class Command extends SCommand {
19
    /**
20
     * Pull all dependencies from a DIC.
21
     *
22
     * @param   array|DIC   $dic
23
     * @return  null
24
     */
25
    public function pull_deps_from($dic) {
26
    }
27
}
28