for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sfneal\ViewExport\Pdf\Utils;
trait Accessors
{
/**
* @var string|null AWS S3 file path
*/
private $path;
* @var string|null AWS S3 file URL
private $url;
* @var string|null
private $output;
* Retrieve the PDF's output.
*
* @return string
public function getOutput(): string
return $this->output;
}
* Retrieve the PDF's AWS S3 path.
* @return string|null
public function getPath(): ?string
return $this->path;
* Retrieve the PDF's AWS S3 url.
public function getUrl(): ?string
return $this->url;