for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Organizations\Entity;
use Core\Entity\ImageMetadata as BaseImageMetadata;
use Doctrine\ODM\MongoDB\Mapping\Annotations as ODM;
/**
* Class Image
*
* @ODM\EmbeddedDocument
* @package Organizations\Entity
*/
class OrganizationImageMetadata extends BaseImageMetadata
{
* Organization which belongs to the company logo
* @ODM\ReferenceOne(targetDocument="Organizations\Entity\Organization", storeAs="id")
protected ?OrganizationInterface $organization;
public function getResourceId()
return 'Entity/OrganizationImage';
}
public function getOwnerFileClass(): string
return OrganizationImage::class;
* @return OrganizationInterface|null
public function getOrganization(): ?OrganizationInterface
return $this->organization;
public function setOrganization(?OrganizationInterface $organization)
$this->organization = $organization;
return $this;