Skip to content

Commit

Permalink
feat: docblocks to client model
Browse files Browse the repository at this point in the history
  • Loading branch information
mewejo committed Jun 16, 2022
1 parent 344a34b commit 7616b09
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Grizzlyware/Salmon/WHMCS/User/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@
use Grizzlyware\Salmon\WHMCS\User\Client\Group;
use Grizzlyware\Salmon\WHMCS\User\Traits\CanBeLabelled;

/**
* @property-read string $email
* @property-read int $id
* @method static self findOrFail(int $id)
* @method static self|null find(int $id)
* @property string $companyname
* @property string $address1
* @property string $address2
* @property string $city
* @property string $state
* @property string $postcode
* @property string $country
* @property string $phonenumber
* @property string $firstname
* @property string $lastname
* @property string $defaultgateway
*/
class Client extends \WHMCS\User\Client
{
use CanBeLabelled;
Expand Down

0 comments on commit 7616b09

Please sign in to comment.