| Conditions | 7 |
| Paths | 64 |
| Total Lines | 19 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function __construct($name, $action, $con, $cached=false) |
||
| 23 | { |
||
| 24 | if ($name=="CodeForces") { |
||
| 25 | new CodeForces($action, $con, $cached); |
||
| 26 | } |
||
| 27 | if ($name=="ContestHunter") { |
||
| 28 | new ContestHunter($action, $con, $cached); |
||
| 29 | } |
||
| 30 | if ($name=="POJ") { |
||
| 31 | new POJ($action, $con, $cached); |
||
| 32 | } |
||
| 33 | if ($name=="PTA") { |
||
| 34 | new PTA($action, $con, $cached); |
||
| 35 | } |
||
| 36 | if ($name=="Vijos") { |
||
| 37 | new Vijos($action, $con, $cached); |
||
| 38 | } |
||
| 39 | if ($name=="UVa") { |
||
| 40 | new UVa($action, $con, $cached); |
||
| 41 | } |
||
| 44 |