| 1 | <?php |
||
| 14 | class Client extends \Nip\Records\Record implements ClientEntityInterface |
||
| 15 | { |
||
| 16 | use ClientTrait, EntityTrait; |
||
| 17 | use Traits\ClientHasGrantsTrait; |
||
| 18 | use Traits\ClientHasSecretTrait; |
||
| 19 | use Traits\ClientHasRedirectTrait; |
||
| 20 | |||
| 21 | 19 | public function __construct() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * @inheritDoc |
||
| 29 | */ |
||
| 30 | 10 | public function writeData($data = false) |
|
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritDoc |
||
| 39 | */ |
||
| 40 | 19 | public function setIdentifier($value) |
|
| 45 | |||
| 46 | 10 | public function initIdentifierFromDb() |
|
| 52 | |||
| 53 | /** |
||
| 54 | * @param mixed $name |
||
| 55 | */ |
||
| 56 | 4 | public function setName($name) |
|
| 61 | } |
||
| 62 |