mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-14 23:22:52 +01:00
36 lines
761 B
PHP
36 lines
761 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;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
}
|