1 | <?php |
||
20 | class PdoConnector implements ConnectorInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var array Mysql PDO connection options |
||
24 | */ |
||
25 | protected $options; |
||
26 | |||
27 | /** |
||
28 | * Constructor. |
||
29 | * |
||
30 | * @param array $options |
||
31 | */ |
||
32 | public function __construct(array $options) |
||
36 | |||
37 | /** |
||
38 | * Get Resource. |
||
39 | * |
||
40 | * @return ExtendedPDO |
||
41 | */ |
||
42 | public function getResource() |
||
51 | } |
||
52 |