EpisodeStatus::model PHP Method

model() public static method

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

Usage Example

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