You are a developer and looking for Shopware projects?
Apply Now!
callApp example
$this
->
executeSequence
(
$sequence
->trueCase,
$event
)
;
return
;
}
$this
->
executeSequence
(
$sequence
->falseCase,
$event
)
;
}
private
function
callHandle
(
ActionSequence
$sequence
, StorableFlow
$event
)
: void
{
if
(
$sequence
->appFlowActionId
)
{
$this
->
callApp
(
$sequence
,
$event
)
;
return
;
}
$action
=
$this
->actions
[
$sequence
->action
]
?? null;
if
(
!
$action
instanceof FlowAction
)
{
return
;
}
$action
->
handleFlow
(
$event
)
;
}