mirror of
https://github.com/archtechx/tenancy-queue-tester.git
synced 2025-12-12 07:04:04 +00:00
20 lines
450 B
PHP
Executable file
20 lines
450 B
PHP
Executable file
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
class LogAbcJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public function handle(): void
|
|
{
|
|
file_put_contents(base_path('abc'), tenant('abc'));
|
|
}
|
|
}
|
|
|