Total Complexity | 2 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
30 | class MissingPrimaryKeyInformation { |
||
31 | private $listOfMissingPrimaryKeys = []; |
||
32 | |||
33 | public function addHintForMissingSubject(string $tableName) { |
||
34 | $this->listOfMissingPrimaryKeys[] = [ |
||
35 | 'tableName' => $tableName, |
||
36 | ]; |
||
37 | } |
||
38 | |||
39 | public function getListOfMissingPrimaryKeys(): array { |
||
41 | } |
||
42 | } |
||
43 |