You are a developer and looking for Shopware projects?
Apply Now!
setupShopwareVersion example
$this
->
setName
(
'sw:store:list'
)
->
setDescription
(
'List licensed plugins.'
)
;
}
/** * {@inheritdoc} */
protected
function
execute
(
InputInterface
$input
, OutputInterface
$output
)
{
$version
=
$this
->
setupShopwareVersion
(
$input
)
;
$token
=
$this
->
setupAuth
(
$input
,
$output
)
;
$domain
=
$this
->
setupDomain
(
$input
,
$output
)
;
$context
=
new
LicenceRequest
(
'',
$version
,
$domain
,
$token
)
;
try
{