for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Authorization\Entity\Oauth2;
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="oauth2_client")
*/
class Client extends BaseClient
{
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
protected $id;
public function __construct()
parent::__construct();
// your own logic
}