Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function find_invocation_warnings( $invocation, $warnings ) { |
||
30 | if ( $invocation->depends_on( $this->declaration ) ) { |
||
31 | $warnings->add( |
||
32 | new Warning( $this->type(), $invocation->path, $invocation->line, 'Class static property ' . $this->declaration->display_name() . ' is missing', $this->declaration ) |
||
33 | ); |
||
34 | } |
||
35 | } |
||
36 | } |
||
37 |