| 1 | <?php |
||
| 13 | abstract class AbstractEncoder implements EncoderInterface |
||
| 14 | { |
||
| 15 | // an array of options for the encoder |
||
| 16 | private $options; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Constructor for the encoder. |
||
| 20 | * @param array $options An array of encoder options. |
||
| 21 | */ |
||
| 22 | 33 | public function __construct($options = array()) |
|
| 26 | } |
||
| 27 |