You are a developer and looking for Shopware projects?
Apply Now!
BodyNode example
return
new
FilterExpression
(
new
ConstantExpression
(
$message
, 0
)
,
new
ConstantExpression
(
'trans', 0
)
,
new
Node
(
$arguments
)
,
0
)
;
}
public
static
function
getTransTag
(
$message
,
$domain
= null
)
{
return
new
TransNode
(
new
BodyNode
(
[
]
,
[
'data' =>
$message
]
)
,
$domain
?
new
ConstantExpression
(
$domain
, 0
)
: null
)
;
}
public
static
function
getTransDefaultDomainTag
(
$domain
)
{
return
new
TransDefaultDomainNode
(
new
ConstantExpression
(
$domain
, 0
)
)
;
}
}