コード例 #1
0
ファイル: ObjectBuilder.php プロジェクト: SwissalpS/Propel2
 /**
  * Returns the package for the base object classes.
  *
  * @return string
  */
 public function getPackage()
 {
     return parent::getPackage() . ".Base";
 }
コード例 #2
0
 /**
  * Overrides method to return child package, if specified.
  *
  * @return string
  */
 public function getPackage()
 {
     return $this->child->getPackage() ? $this->child->getPackage() : parent::getPackage();
 }