| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function pushSubset($subset, closure $closure) |
||
| 25 | { |
||
| 26 | $option = new self; |
||
| 27 | |||
| 28 | call_user_func($closure, $option); |
||
| 29 | |||
| 30 | $render = new Renderable\Render(); |
||
| 31 | $render = new Renderable\Subset($render); |
||
| 32 | |||
| 33 | $this->options = array_merge($this->options, $render->handle( |
||
| 34 | $subset, |
||
| 35 | $option->render() |
||
| 36 | )); |
||
| 37 | } |
||
| 38 | |||
| 71 |