| 1 | <?php |
||
| 11 | class VarAttr extends AbstractRowDecorator |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Class |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $name; |
||
| 19 | |||
| 20 | protected $value; |
||
| 21 | |||
| 22 | protected $vars; |
||
| 23 | |||
| 24 | public function __construct($options) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Rendering decorator |
||
| 33 | * |
||
| 34 | * @param string $context |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function render($context) |
||
| 50 | } |
||
| 51 |