Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | protected static function getSearchNodes(): Collection |
||
33 | { |
||
34 | return collect([ |
||
35 | ['audio', 'src'], |
||
36 | ['embed', 'src'], |
||
37 | ['form', 'action'], |
||
38 | ['link', 'href'], |
||
39 | ['iframe', 'src'], |
||
40 | ['img', 'src'], |
||
41 | ['img', 'srcset'], |
||
42 | ['object', 'data'], |
||
43 | ['param', 'value'], |
||
44 | ['script', 'src'], |
||
45 | ['source', 'src'], |
||
46 | ['source', 'srcset'], |
||
47 | ['video', 'src'], |
||
48 | ]); |
||
49 | } |
||
50 | } |
||
51 |