AddressType::attributeLabels PHP Метод

attributeLabels() публичный Метод

public attributeLabels ( ) : array
Результат array customized attribute labels (name=>label)
    public function attributeLabels()
    {
        return array();
    }

Usage Example

Пример #1
0
 /**
  * @covers Allergy::attributeLabels
  */
 public function testAttributeLabels()
 {
     $expected = array();
     $this->assertEquals($expected, $this->model->attributeLabels());
 }
All Usage Examples Of AddressType::attributeLabels