Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
31 | 6 | public static function create(array $data) |
|
32 | { |
||
33 | 6 | $sentences = []; |
|
34 | |||
35 | 6 | if (!isset($data['sentences_tone'])) { |
|
36 | 3 | return new self($sentences); |
|
37 | } |
||
38 | |||
39 | 3 | foreach ($data['sentences_tone'] as $sentenceTone) { |
|
40 | 3 | $sentences[] = Sentence::create($sentenceTone); |
|
41 | 2 | } |
|
42 | |||
43 | 3 | return new self($sentences); |
|
44 | } |
||
45 | |||
56 |