[M3uFormat] small refactoring

This commit is contained in:
boyska 2024-03-07 12:41:52 +01:00
parent 624fc8d551
commit f0fc9a7ae2

View File

@ -54,9 +54,14 @@ class M3uItem
public $url = null;
public $bytes = null;
public function isEmpty(): bool
{
return $this->url === null;
}
public function render(): string
{
if ($this->url === null) {
if ($this->isEmpty()) {
return '';
}
$text = "\n";