attributeLabels() public method

public attributeLabels ( ) : array
return array customized attribute labels (name=>label)
コード例 #1
0
 /**
  * @covers EpisodeStatus::attributeLabels
  */
 public function testAttributeLabels()
 {
     $expected = array('id' => 'ID', 'name' => 'Name', 'order' => 'Order');
     $this->assertEquals($expected, $this->model->attributeLabels());
 }