for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GraphQLTests\Doctrine\Blog\Model\Special;
use Doctrine\ORM\Mapping as ORM;
use GraphQLTests\Doctrine\Blog\Model\AbstractModel;
/**
* @ORM\Entity
*/
final class NamespaceSupport extends AbstractModel
{
private $value;
* @return SelfSupport
public function getOtherModelViaPhpDoc()
return new SelfSupport();
}
* @param SelfSupport $value
public function setOtherModelViaPhpDoc($value): void
$this->value = $value;