for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Bone\BoneDoctrine\Traits;
use Doctrine\ORM\Mapping as ORM;
trait HasImage
{
#[ORM\Column()]
private string $imagePath = '';
public function getImagePath(): string
return $this->imagePath;
}
public function setImagePath(string $imagePath): void
$this->imagePath = $imagePath;