| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | abstract class Command extends Base |
||
| 14 | { |
||
| 15 | use AttachDaftFramework; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return string|false |
||
| 19 | */ |
||
| 20 | 2 | protected static function tempnam() |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string|false $tempnam |
||
| 27 | * |
||
| 28 | * @return string|false |
||
| 29 | */ |
||
| 30 | 4 | final protected static function tempnamCheck($tempnam, OutputInterface $output) |
|
| 41 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.