| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct() |
||
| 26 | { |
||
| 27 | $iniPath = $this->getIniPath(); |
||
| 28 | if ($iniPath !== '') { |
||
| 29 | parent::__construct($iniPath); |
||
| 30 | } else { |
||
| 31 | throw new SourceConditionNotSatisfiedException( |
||
| 32 | "Browscap file not configured in php configuration (see 'browscap' directive).", |
||
| 33 | 1458977060 |
||
| 34 | ); |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 46 |