| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class PdfLetters extends RecordManager |
||
| 15 | { |
||
| 16 | use PdfLettersTrait; |
||
| 17 | use SingletonTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @inheritdoc |
||
| 21 | */ |
||
| 22 | public function getPrimaryKey() |
||
| 23 | { |
||
| 24 | return 'id'; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function generateTable() |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param $type |
||
| 34 | * @return AbstractRecordsTrait |
||
| 35 | */ |
||
| 36 | public function getParentManagerFromType($type) |
||
|
|
|||
| 37 | { |
||
| 38 | // TODO: Implement getParentManagerFromType() method. |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | protected function getCustomFieldsManagerClass() |
||
| 46 | // TODO: Implement getCustomFieldsManagerClass() method. |
||
| 47 | } |
||
| 48 | } |
||
| 49 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.