__construct() public method

public __construct ( App\Models\Account $account = null, $serializer = null )
$account App\Models\Account
Ejemplo n.º 1
0
 public function __construct(Account $account)
 {
     parent::__construct($account);
 }
 public function __construct($account = null, $serializer = null, $client = null)
 {
     parent::__construct($account, $serializer);
     $this->client = $client;
 }
 public function __construct($account = null, $serializer = null, $invoice = null)
 {
     parent::__construct($account, $serializer);
     $this->invoice = $invoice;
 }
 public function __construct(Account $account, $serializer, $tokenName)
 {
     parent::__construct($account, $serializer);
     $this->tokenName = $tokenName;
 }
Ejemplo n.º 5
0
 public function __construct(Account $account, Client $client)
 {
     parent::__construct($account);
     $this->client = $client;
 }