1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace Base\OAuthServerBundle\Entity;
- use FOS\OAuthServerBundle\Entity\Client as BaseClient;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class OAuthClient extends BaseClient
- {
- /**
- * @ORM\Id
- * @ORM\Column(type="integer")
- * @ORM\GeneratedValue(strategy="AUTO")
- */
- protected $id;
- public function __construct()
- {
- parent::__construct();
- }
- public function __toString()
- {
- return strval($this->id);
- }
- }
|