mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 15:13:29 +01:00
44 lines
984 B
PHP
44 lines
984 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\InvoiceSyncCast;
|
|
use Illuminate\Contracts\Database\Eloquent\Castable;
|
|
|
|
/**
|
|
* InvoiceSync.
|
|
*/
|
|
class InvoiceSync 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 InvoiceSyncCast::class;
|
|
}
|
|
|
|
public static function fromArray(array $data): self
|
|
{
|
|
return new self($data);
|
|
}
|
|
}
|