Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | protected function createFrame(string|IStyle $entry): IFrame |
||
19 | { |
||
20 | if (!is_string($entry)) { |
||
21 | throw new InvalidArgumentException( |
||
22 | sprintf( |
||
23 | 'Entry should be type of "string", "%s" given%s.', |
||
24 | get_debug_type($entry), |
||
25 | sprintf(', see "%s()"', __METHOD__), |
||
26 | ) |
||
27 | ); |
||
28 | } |
||
29 | return FrameFactory::create($entry, WidthDeterminer::determine($entry)); |
||
30 | } |
||
32 |