DynamicTerminalObject
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 4

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 4
dl 0
loc 4
c 0
b 0
f 0
1
<?php
2
3
namespace League\CLImate\TerminalObject\Dynamic;
4
5
use League\CLImate\Decorator\Parser\ParserImporter;
6
use League\CLImate\Settings\SettingsImporter;
7
use League\CLImate\Util\OutputImporter;
8
use League\CLImate\Util\UtilImporter;
9
10
/**
11
 * The dynamic terminal object doesn't adhere to the basic terminal object
12
 * contract, which is why it gets its own base class
13
 */
14
15
abstract class DynamicTerminalObject implements DynamicTerminalObjectInterface
16
{
17
    use SettingsImporter, ParserImporter, OutputImporter, UtilImporter;
18
}
19