Conditions | 2 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(array $attributes = []) |
||
17 | { |
||
18 | $connection = config('trans-helper.database.connection') ?: config('database.default'); |
||
19 | $this->setConnection($connection); |
||
20 | $this->setTable(config('trans-helper.database.table.term')); |
||
21 | parent::__construct($attributes); |
||
22 | } |
||
71 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.