/framework/core/db/DbRelationship.php
http://zoop.googlecode.com/ · PHP · 16 lines · 14 code · 2 blank · 0 comment · 0 complexity · ac6888e7be085b940bbcdf7bd4cf93ba MD5 · raw file
- <?php
- abstract class DbRelationship
- {
- protected $name;
- protected $dbObject;
- protected $params;
-
- function __construct($name, $params, $dbObject)
- {
- $this->name = $name;
- $this->dbObject = $dbObject;
- $this->params = $params;
- }
-
- abstract public function getInfo();
- }