| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 5 | public function execute(string $value, int $count, string $suffix = '...'): string |
|
| 18 | { |
||
| 19 | 5 | $value = \strip_tags($value); |
|
| 20 | |||
| 21 | 5 | $words = \preg_split('/(\s+)/u', \trim($value), null, PREG_SPLIT_DELIM_CAPTURE); |
|
| 22 | 5 | if (\count($words) / 2 > $count) { |
|
|
|
|||
| 23 | 4 | return \implode('', \array_slice($words, 0, ($count * 2) - 1)) . $suffix; |
|
| 24 | } |
||
| 25 | 1 | return $value; |
|
| 26 | } |
||
| 28 |