Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
TestSiteInstallCommand example
class
TestSiteApplication
extends
Application
{
/** * {@inheritdoc} */
protected
function
getDefaultCommands
(
)
: array
{
$default_commands
= parent::
getDefaultCommands
(
)
;
$default_commands
[
]
=
new
TestSiteInstallCommand
(
)
;
$default_commands
[
]
=
new
TestSiteTearDownCommand
(
)
;
$default_commands
[
]
=
new
TestSiteReleaseLocksCommand
(
)
;
$default_commands
[
]
=
new
TestSiteUserLoginCommand
(
)
;
return
$default_commands
;
}
}