Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
displayAuthenticators example
$io
->
title
(
sprintf
(
'Firewall "%s"',
$name
)
)
;
$this
->
displayFirewallSummary
(
$name
,
$context
,
$io
)
;
$this
->
displaySwitchUser
(
$context
,
$io
)
;
if
(
$input
->
getOption
(
'events'
)
)
{
$this
->
displayEventListeners
(
$name
,
$context
,
$io
)
;
}
$this
->
displayAuthenticators
(
$name
,
$io
)
;
return
0;
}
protected
function
displayFirewallList
(
SymfonyStyle
$io
)
: void
{
$io
->
title
(
'Firewalls'
)
;
$io
->
text
(
'The following firewalls are defined:'
)
;
$io
->
listing
(
$this
->firewallNames
)
;