| Conditions | 4 |
| Paths | 3 |
| Total Lines | 19 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function run($ad_code) |
||
| 24 | { |
||
| 25 | if (preg_match_all('/<script(.*)src(.*)>/U', $ad_code, $matches)) |
||
| 26 | { |
||
| 27 | foreach ($matches[1] as $match) |
||
| 28 | { |
||
| 29 | if (!preg_match('/ async/', $match)) |
||
| 30 | { |
||
| 31 | return array( |
||
| 32 | 'notice' => array( |
||
| 33 | 'SCRIPT_WITHOUT_ASYNC', |
||
| 34 | ), |
||
| 35 | ); |
||
| 36 | } |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | return array(); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |