Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function run($eloquentClasses) |
||
|
|||
18 | { |
||
19 | |||
20 | |||
21 | $tables = (new Pipeline) |
||
22 | // Retorna Todas as Tabelas |
||
23 | ->pipe(new TablesParser) |
||
24 | // Mapea as Tabelas |
||
25 | ->pipe(new TablesBuilder) |
||
26 | // Builda e Retorna o Entity |
||
27 | ->pipe(new TablesMount); |
||
28 | |||
29 | // Returns 21 |
||
30 | $entitys = $pipeline->process(10); |
||
31 | |||
32 | |||
33 | |||
34 | } |
||
35 | View Code Duplication | public function runTwo($eloquentClasses) |
|
64 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.