Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
validateEscaping example
if
(
$this
->lexer->current->
isA
(
EmailLexer::S_DOT
)
&&
$this
->lexer->
isNextToken
(
EmailLexer::S_DOT
)
)
{
return
new
InvalidEmail
(
new
ConsecutiveDot
(
)
,
$this
->lexer->current->value
)
;
}
if
(
$this
->lexer->current->
isA
(
EmailLexer::S_DOT
)
&&
$this
->lexer->
isNextToken
(
EmailLexer::S_AT
)
)
{
return
new
InvalidEmail
(
new
DotAtEnd
(
)
,
$this
->lexer->current->value
)
;
}
$resultEscaping
=
$this
->
validateEscaping
(
)
;
if
(
$resultEscaping
->
isInvalid
(
)
)
{
return
$resultEscaping
;
}
$resultToken
=
$this
->
validateTokens
(
false
)
;
if
(
$resultToken
->
isInvalid
(
)
)
{
return
$resultToken
;
}
$resultFWS
=
$this
->
parseLocalFWS
(
)
;
if
(
$resultFWS
->
isInvalid
(
)
)
{