name; } public function getDescription(): string { return $this->description; } public function getLink(): string { return $this->link; } public function getLanguage(): string { return $this->language; } public function getCopyright(): string { return $this->copyright; } /** * @param array $props The properties of the Channel model * @return Channel */ public static function fromArray(array $props): Channel { return self( $props['id'] ?? null, $props['name'], $props['description'] ?? '', $props['link'] ?? '', $props['language'] ?? '', $props['copyright'] ?? '', $props['explicit'] ?? false ); } }