App\Ninja\Transformers\EntityTransformer::__construct PHP Méthode

__construct() public méthode

public __construct ( App\Models\Account $account = null, $serializer = null )
$account App\Models\Account
    public function __construct(Account $account = null, $serializer = null)
    {
        $this->account = $account;
        $this->serializer = $serializer;
    }

Usage Example

 public function __construct(Account $account)
 {
     parent::__construct($account);
 }
All Usage Examples Of App\Ninja\Transformers\EntityTransformer::__construct