| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 51 | public static function areAllStandardsValid($standards) |
||
| 52 | { |
||
| 53 | $standards = explode(',', $standards); |
||
| 54 | $installed_standards = PHP_CodeSniffer::getInstalledStandards(); |
||
| 55 | foreach ($standards as $standard) { |
||
| 56 | if (!in_array($standard, $installed_standards)) { |
||
| 57 | return false; |
||
| 58 | } |
||
| 59 | } |
||
| 60 | |||
| 61 | return true; |
||
| 62 | } |
||
| 63 | } |
||
| 64 |