| 1 | <?php |
||
| 14 | class Mapper extends AbstractCellDecorator |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Array of options mapping |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $options; |
||
| 22 | |||
| 23 | |||
| 24 | /** |
||
| 25 | * Constructor |
||
| 26 | * @param array $options |
||
| 27 | * @throws Exception\InvalidArgumentException |
||
| 28 | */ |
||
| 29 | public function __construct(array $options = array()) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Rendering decorator |
||
| 40 | * @param string $context |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | public function render($context) |
||
| 47 | } |
||
| 48 |