AddressType::attributeLabels PHP Method

attributeLabels() public method

public attributeLabels ( ) : array
return 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