for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Obblm\Core\Entity\Traits;
use Doctrine\ORM\Mapping as ORM;
trait CoverTrait
{
/**
* @ORM\Column(type="string", nullable=true)
*/
private $coverFilename;
private $coverMimeType;
public function getCoverFilename(): ?string
return $this->coverFilename;
}
public function setCoverFilename(?string $coverFilename): self
$this->coverFilename = $coverFilename;
return $this;
public function getCoverMimeType(): ?string
return $this->coverMimeType;
public function setCoverMimeType(?string $coverMimeType): self
$this->coverMimeType = $coverMimeType;