Файл: vendor/intervention/image/src/Typography/TextBlock.php
Строк: 82
<?php
declare(strict_types=1);
namespace InterventionImageTypography;
use InterventionImageCollection;
class TextBlock extends Collection
{
/**
* Create new text block object.
*/
public function __construct(string $text)
{
parent::__construct(array_map(
fn(string $line): Line => new Line($line),
explode("n", $text),
));
}
/**
* Return array of lines in text block.
*
* @return array<Line>
*/
public function lines(): array
{
return $this->items;
}
/**
* Set lines of the text block.
*
* @param array<Line> $lines
*/
public function setLines(array $lines): self
{
$this->items = $lines;
return $this;
}
/**
* Get line by given key.
*/
public function line(string|int|float $key): ?Line
{
if (!array_key_exists((string) $key, $this->lines())) {
return null;
}
return $this->lines()[(string) $key];
}
/**
* Return line with most characters of text block.
*/
public function longestLine(): Line
{
$lines = $this->lines();
usort($lines, function (Line $a, Line $b): int {
if ($a->length() === $b->length()) {
return 0;
}
return $a->length() > $b->length() ? -1 : 1;
});
return $lines[0];
}
}