EpisodeStatus::model PHP 메소드

model() 공개 정적인 메소드

Returns the static model of the specified AR class.
public static model ( $className = __CLASS__ ) : EpisodeStatus
리턴 EpisodeStatus the static model class
    public static function model($className = __CLASS__)
    {
        return parent::model($className);
    }

Usage Example

예제 #1
0
 /**
  * @covers EpisodeStatus::model
  */
 public function testModel()
 {
     $this->assertEquals('EpisodeStatus', get_class(EpisodeStatus::model()), 'Class name should match model.');
 }
All Usage Examples Of EpisodeStatus::model