| 1 | <?php |
||
| 7 | class Expression implements Renderable { |
||
| 8 | |||
| 9 | protected $render; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * [__construct description] |
||
| 13 | * @param \EnergieProduction\Chart\Contracts\Renderable $render |
||
| 14 | */ |
||
| 15 | public function __construct(Renderable $render) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * [handle description] |
||
| 22 | * @param string $key |
||
| 23 | * @param mixed $content |
||
| 24 | * @return array |
||
| 25 | */ |
||
| 26 | public function handle($key, $content) |
||
| 30 | } |