コード例 #1
0
ファイル: Db.php プロジェクト: nsams/koala-framework
 public function isEqual(Kwf_Model_Interface $other)
 {
     if ($other instanceof Kwf_Model_Db && $this->getTableName() == $other->getTableName()) {
         return true;
     }
     return false;
 }