mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-09 08:15:32 -05:00
30 lines
533 B
PHP
30 lines
533 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Services\Scheduler;
|
|
|
|
use App\Models\Scheduler;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class ScheduleEntity
|
|
{
|
|
use MakesHash;
|
|
|
|
public function __construct(public Scheduler $scheduler)
|
|
{
|
|
}
|
|
|
|
public function run()
|
|
{
|
|
|
|
}
|
|
}
|