Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
6 | public function generate( $invocations, $differences ) { |
||
7 | /** |
||
8 | * Scan every invocation to see if it depends on a Difference |
||
9 | */ |
||
10 | foreach( $invocations->get() as $invocation ) { |
||
11 | foreach( $differences->get() as $difference ) { |
||
12 | // $warning = $ |
||
13 | $difference->find_invocation_warnings( $invocation, $this ); |
||
14 | } |
||
15 | } |
||
16 | } |
||
17 | |||
44 | } |