Skip to content

Commit 872bb13

Browse files
authored
Merge pull request #30 from Parishop/master
Add driver Firebird PDO
2 parents da47d6d + fc5d7f3 commit 872bb13

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/PHPixie/ORM/Drivers.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ class Drivers
2121
* @var array
2222
*/
2323
protected $classMap = array(
24-
'pdo' => '\PHPixie\ORM\Drivers\Driver\PDO',
25-
'mongo' => '\PHPixie\ORM\Drivers\Driver\Mongo',
24+
'pdo' => '\PHPixie\ORM\Drivers\Driver\PDO',
25+
'mongo' => '\PHPixie\ORM\Drivers\Driver\Mongo',
26+
'interbase' => '\PHPixie\ORM\Drivers\Driver\InterBase',
2627
);
2728

2829
/**
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
namespace PHPixie\ORM\Drivers\Driver;
4+
5+
class InterBase extends PDO
6+
{
7+
8+
}

0 commit comments

Comments
 (0)