Snipe-IT
Open Source Asset Management
FEATURES
DEMO
DOWNLOAD
DOCUMENTATION
HOSTED SOLUTION
SUPPORT
Intro
Namespaces
Classes
Files
Misc
snipe-it
app
Jobs
Job.php
Go to the documentation of this file.
1
<?php
2
3
namespace
App\Jobs
;
4
5
use
Illuminate\Bus\Queueable
;
6
7
abstract
class
Job
8
{
9
/*
10
|--------------------------------------------------------------------------
11
| Queueable Jobs
12
|--------------------------------------------------------------------------
13
|
14
| This job base class provides a central location to place any logic that
15
| is shared across all of your jobs. The trait included with the class
16
| provides access to the "onQueue" and "delay" queue helper methods.
17
|
18
*/
19
20
use
Queueable
;
21
}
Queueable
Queueable
App\Jobs\Job
Definition:
Job.php:7
App\Jobs
Definition:
Job.php:3