| 1 | <?php | ||
| 7 | class LeadFile extends Model | ||
|  | |||
| 8 | { | ||
| 9 | /** | ||
| 10 | * @var integer | ||
| 11 | */ | ||
| 12 | protected $id; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * @var string | ||
| 16 | */ | ||
| 17 | protected $name; | ||
| 18 | |||
| 19 | public function __construct(array $fileData = []) | ||
| 28 | |||
| 29 | /** | ||
| 30 | * @return array | ||
| 31 | */ | ||
| 32 | public function toArray() | ||
| 43 | |||
| 44 | /** | ||
| 45 | * @return int | ||
| 46 | */ | ||
| 47 | public function getId() | ||
| 51 | |||
| 52 | /** | ||
| 53 | * @return string | ||
| 54 | */ | ||
| 55 | public function getName() | ||
| 59 | } | ||
| 60 |