platform/api/symfony/Component/Workflow/Event/Event.yaml
2024-09-02 10:44:11 -07:00

59 lines
1.3 KiB
YAML

name: Event
class_comment: "# * @author Fabien Potencier <fabien@symfony.com>\n# * @author Gr\xE9\
goire Pineau <lyrixx@lyrixx.info>\n# * @author Carlos Pereira De Amorim <carlos@shauri.fr>"
dependencies:
- name: Marking
type: class
source: Symfony\Component\Workflow\Marking
- name: Transition
type: class
source: Symfony\Component\Workflow\Transition
- name: WorkflowInterface
type: class
source: Symfony\Component\Workflow\WorkflowInterface
- name: BaseEvent
type: class
source: Symfony\Contracts\EventDispatcher\Event
properties: []
methods:
- name: __construct
visibility: public
parameters:
- name: subject
- name: marking
- name: transition
default: 'null'
- name: workflow
default: 'null'
comment: null
- name: getMarking
visibility: public
parameters: []
comment: null
- name: getSubject
visibility: public
parameters: []
comment: null
- name: getTransition
visibility: public
parameters: []
comment: null
- name: getWorkflow
visibility: public
parameters: []
comment: null
- name: getWorkflowName
visibility: public
parameters: []
comment: null
- name: getMetadata
visibility: public
parameters:
- name: key
- name: subject
comment: null
traits:
- Symfony\Component\Workflow\Marking
- Symfony\Component\Workflow\Transition
- Symfony\Component\Workflow\WorkflowInterface
interfaces: []