コード例 #1
0
ファイル: Wishlist.php プロジェクト: huynt57/fashion
 public static function model($className = __CLASS__)
 {
     return parent::model($className);
 }
コード例 #2
0
 /**
  * @covers wishlist\classes\BaseWishlist::_deinstall
  */
 public function test_deinstall()
 {
     $this->assertNull($this->object->_deinstall());
 }
コード例 #3
0
ファイル: Wishlist.php プロジェクト: uiDeveloper116/webstore
 public function __get($strName)
 {
     switch ($strName) {
         case 'Visible':
             return $this->getVisible();
         case 'Sharable':
             return $this->getSharable();
         case 'IsMine':
             return $this->getIsMine();
         default:
             try {
                 return parent::__get($strName);
             } catch (QCallerException $objExc) {
                 $objExc->IncrementOffset();
                 throw $objExc;
             }
     }
 }