Rev 49 | Rev 52 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 49 | Rev 51 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | <?php
 | 1 | <?php
 | 
| 2 | 2 | ||
| - | 3 | namespace PointedEars\PHPX\Db; | |
| - | 4 | ||
| 3 | require_once __DIR__ . '/../AbstractModel.php'; | 5 | require_once __DIR__ . '/../AbstractModel.php'; | 
| 4 | require_once __DIR__ . '/Table.php'; | 6 | require_once __DIR__ . '/Table.php'; | 
| 5 | 7 | ||
| 6 | /**
 | 8 | /**
 | 
| 7 |  * Generic abstract database mapper class
 | 9 |  * Generic abstract database mapper class
 | 
| 8 |  *
 | 10 |  *
 | 
| 9 |  * @author Thomas Lahn
 | 11 |  * @author Thomas Lahn
 | 
| 10 |  */
 | 12 |  */
 | 
| 11 | abstract class Mapper extends AbstractModel | 13 | abstract class Mapper extends \PointedEars\PHPX\AbstractModel | 
| 12 | {
 | 14 | {
 | 
| 13 |   /**
 | 15 |   /**
 | 
| 14 |    * Class name of the associated table model
 | 16 |    * Class name of the associated table model
 | 
| 15 |    *
 | 17 |    *
 | 
| 16 |    * @var string
 | 18 |    * @var string
 |