Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3.072 |
Changes | 0 |
1 | <?php |
||
24 | 8 | public function __construct($strategyId) |
|
25 | { |
||
26 | 8 | switch ($strategyId) { |
|
27 | case 'timeslot': |
||
28 | 5 | $this->strategy = new TimetableTimeslotStrategy(new Timetable()); |
|
29 | 5 | break; |
|
30 | case 'dateslot': |
||
31 | 1 | $this->strategy = new TimetableDateslotStrategy(new Timetable()); |
|
32 | 1 | break; |
|
33 | default: |
||
34 | 2 | throw new StrategyNotRecognizedException($strategyId); |
|
35 | } |
||
36 | 6 | } |
|
37 | |||
43 |