Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | protected static function getSearchNodes(): Collection |
||
42 | { |
||
43 | return collect([ |
||
44 | ['audio', 'src'], |
||
45 | ['embed', 'src'], |
||
46 | ['form', 'action'], |
||
47 | ['link', 'href'], |
||
48 | ['iframe', 'src'], |
||
49 | ['img', 'src'], |
||
50 | ['img', 'srcset'], |
||
51 | ['object', 'data'], |
||
52 | ['param', 'value'], |
||
53 | ['script', 'src'], |
||
54 | ['source', 'src'], |
||
55 | ['source', 'srcset'], |
||
56 | ['video', 'src'], |
||
57 | ]); |
||
58 | } |
||
59 | } |
||
60 |