for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NovaExportConfiguration\Export;
trait HasDownLoadLink
{
protected ?string $downloadLink = null;
public function setDownloadLink(?string $downloadLink): static
$this->downloadLink = $downloadLink;
return $this;
}
public function downloadLink(?string $default = null): ?string
return $this->downloadLink ?? $default;