1 | <?php |
||
5 | trait ParserImporter |
||
6 | { |
||
7 | /** |
||
8 | * An instance of the Parser class |
||
9 | * |
||
10 | * @var \League\CLImate\Decorator\Parser\Parser $parser |
||
11 | */ |
||
12 | protected $parser; |
||
13 | |||
14 | /** |
||
15 | * Import the parser and set the property |
||
16 | * |
||
17 | * @param \League\CLImate\Decorator\Parser\Parser $parser |
||
18 | */ |
||
19 | 568 | public function parser(Parser $parser) |
|
23 | } |
||
24 |