File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Foundation/Console
Upload
[..]
AboutCommand.php (12.59 KB)
Edit
Rename
Del
CliDumper.php (3.26 KB)
Edit
Rename
Del
ConfigPublishCommand.php (3.07 KB)
Edit
Rename
Del
DownCommand.php (5.56 KB)
Edit
Rename
Del
EnumMakeCommand.php (3.53 KB)
Edit
Rename
Del
InteractsWithComposerPackages.php (1.07 KB)
Edit
Rename
Del
Kernel.php (17.22 KB)
Edit
Rename
Del
LangPublishCommand.php (1.82 KB)
Edit
Rename
Del
ListenerMakeCommand.php (4.1 KB)
Edit
Rename
Del
PolicyMakeCommand.php (5.97 KB)
Edit
Rename
Del
QueuedCommand.php (1013 B)
Edit
Rename
Del
ServeCommand.php (13.24 KB)
Edit
Rename
Del
StubPublishCommand.php (5.88 KB)
Edit
Rename
Del
VendorPublishCommand.php (10.8 KB)
Edit
Rename
Del
stubs/
Rename
Del
Edit: QueuedCommand.php
<?php namespace Illuminate\Foundation\Console; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Console\Kernel as KernelContract; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; class QueuedCommand implements ShouldQueue { use Dispatchable, Queueable; /** * The data to pass to the Artisan command. * * @var array */ protected $data; /** * Create a new job instance. * * @param array $data */ public function __construct($data) { $this->data = $data; } /** * Handle the job. * * @param \Illuminate\Contracts\Console\Kernel $kernel * @return void */ public function handle(KernelContract $kernel) { $kernel->call(...array_values($this->data)); } /** * Get the display name for the queued job. * * @return string */ public function displayName() { return array_values($this->data)[0]; } }
Simpan