BasicTerminalObjectInterface::parser()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
namespace League\CLImate\TerminalObject\Basic;
4
5
use League\CLImate\Decorator\Parser\Parser;
6
use League\CLImate\Util\UtilFactory;
7
8
interface BasicTerminalObjectInterface
9
{
10
    public function result();
11
12
    public function settings();
13
14
    /**
15
     * @param $setting
16
     * @return void
17
     */
18
    public function importSetting($setting);
19
20
    /**
21
     * @return boolean
22
     */
23
    public function sameLine();
24
25
    /**
26
     * @param \League\CLImate\Decorator\Parser\Parser $parser
27
     */
28
    public function parser(Parser $parser);
29
30
    /**
31
     * @param UtilFactory $util
32
     */
33
    public function util(UtilFactory $util);
34
}
35