Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public static function create($primaryText = null, $secondaryText = null, $tertiaryText = null): self |
||
33 | { |
||
34 | $textContent = new self(); |
||
35 | |||
36 | $textContent->primaryText = $primaryText; |
||
37 | $textContent->secondaryText = $secondaryText; |
||
38 | $textContent->tertiaryText = $tertiaryText; |
||
39 | |||
40 | return $textContent; |
||
41 | } |
||
63 |