platform/api/laravel/Queue/Events/JobFailed.yaml
2024-09-02 10:44:11 -07:00

41 lines
1.1 KiB
YAML

name: JobFailed
class_comment: null
dependencies: []
properties:
- name: connectionName
visibility: public
comment: '# * The connection name.
# *
# * @var string'
- name: job
visibility: public
comment: '# * The job instance.
# *
# * @var \Illuminate\Contracts\Queue\Job'
- name: exception
visibility: public
comment: '# * The exception that caused the job to fail.
# *
# * @var \Throwable'
methods:
- name: __construct
visibility: public
parameters:
- name: connectionName
- name: job
- name: exception
comment: "# * The connection name.\n# *\n# * @var string\n# */\n# public $connectionName;\n\
# \n# /**\n# * The job instance.\n# *\n# * @var \\Illuminate\\Contracts\\Queue\\\
Job\n# */\n# public $job;\n# \n# /**\n# * The exception that caused the job to\
\ fail.\n# *\n# * @var \\Throwable\n# */\n# public $exception;\n# \n# /**\n# *\
\ Create a new event instance.\n# *\n# * @param string $connectionName\n# *\
\ @param \\Illuminate\\Contracts\\Queue\\Job $job\n# * @param \\Throwable \
\ $exception\n# * @return void"
traits: []
interfaces: []