mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
43 lines
975 B
PHP
43 lines
975 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\DataMapper;
|
|
|
|
use App\Casts\ClientSyncCast;
|
|
use Illuminate\Contracts\Database\Eloquent\Castable;
|
|
|
|
/**
|
|
* ClientSync.
|
|
*/
|
|
class ClientSync implements Castable
|
|
{
|
|
public string $qb_id;
|
|
|
|
public function __construct(array $attributes = [])
|
|
{
|
|
$this->qb_id = $attributes['qb_id'] ?? '';
|
|
}
|
|
/**
|
|
* Get the name of the caster class to use when casting from / to this cast target.
|
|
*
|
|
* @param array<string, mixed> $arguments
|
|
*/
|
|
public static function castUsing(array $arguments): string
|
|
{
|
|
return ClientSyncCast::class;
|
|
}
|
|
|
|
public static function fromArray(array $data): self
|
|
{
|
|
return new self($data);
|
|
}
|
|
}
|