Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
escapeUrl example
public
function
escapeCss
(
$string
)
{
return
$this
->escaper->
escapeCss
(
(string)
$string
)
;
}
/** * {@inheritdoc} */
public
function
escapeUrl
(
$string
)
{
return
$this
->escaper->
escapeUrl
(
(string)
$string
)
;
}
}