Label::__construct PHP Méthode

__construct() public méthode

public __construct ( $id = null, $name = null, $status = null, $attribute = null, $LabelType = null )
        public function __construct($id = null, $name = null, $status = null, $attribute = null, $LabelType = null)
        {
            $this->id = $id;
            $this->name = $name;
            $this->status = $status;
            $this->attribute = $attribute;
            $this->LabelType = $LabelType;
        }

Usage Example

 public function __construct($id = null, $name = null, $status = null, $LabelType = null)
 {
     parent::__construct();
     $this->id = $id;
     $this->name = $name;
     $this->status = $status;
     $this->LabelType = $LabelType;
 }
All Usage Examples Of Label::__construct