| 1 | <?php |
||
| 20 | class MysqliConnector implements ConnectorInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var array Mysqli 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 mysqli |
||
| 41 | */ |
||
| 42 | public function getResource() |
||
| 54 | } |
||
| 55 |