Total Complexity | 3 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class TblMigration extends Model |
||
12 | { |
||
13 | /** |
||
14 | * @var int |
||
15 | */ |
||
16 | protected $id; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $migration; |
||
22 | |||
23 | /** |
||
24 | * @return string |
||
25 | */ |
||
26 | public function getMigration(): string |
||
27 | { |
||
28 | return $this->migration; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param string $migration |
||
33 | */ |
||
34 | public function setMigration(string $migration) |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * @return int |
||
41 | */ |
||
42 | public function getId(): int |
||
45 | } |
||
46 | } |