for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SMG\OauthBundle\Entity;
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation as Serializer;
/**
* @ORM\Entity
*/
class Client extends BaseClient
{
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
protected $id;
* @ORM\Column(type="string", nullable=true)
public $type;
* @ORM\Column(type="json_array", nullable=true)
public $meta;
* @Serializer\VirtualProperty
* @Serializer\SerializedName("client_id")
*
* @return string
public function getClientId()
return $this->getPublicId();
}
public function __construct()
parent::__construct();
public function setType($type)
$this->type = $type;
return $this;
public function getType()
return $this->type;
public function setMeta($meta)
$this->meta = $meta;
public function getMeta()
return $this->meta;
* Check if the given client type is the same as the current user.
* @param string $typeToCheck client type to check
* @return bool
public function isTypeEqualsTo($typeToCheck)
return $this->getType() === $typeToCheck;