Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
23 | public function compile(Buffer $buffer) |
||
24 | { |
||
25 | $date = new \DateTime(); |
||
26 | $buffer->writeln('/** Container compiled by ' . getenv('USER') . ' at: ' . $date->format('r') . ' */'); |
||
27 | $buffer->writeln('use \Zicht\Tool\Debug;'); |
||
28 | $buffer->writeln('$z = new \Zicht\Tool\Container\Container();'); |
||
29 | |||
30 | foreach ($this->nodes as $node) { |
||
31 | $node->compile($buffer); |
||
32 | } |
||
33 | } |
||
34 | } |
||
35 |