Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 148 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 148 Revision 150
Zeile 2... Zeile 2...
2
 
2
 
Zeile 3... Zeile 3...
3
namespace Egulias\EmailValidator\Parser\CommentStrategy;
3
namespace Egulias\EmailValidator\Parser\CommentStrategy;
4
 
4
 
-
 
5
use Egulias\EmailValidator\EmailLexer;
Zeile 5... Zeile 6...
5
use Egulias\EmailValidator\EmailLexer;
6
use Egulias\EmailValidator\Result\Result;
6
use Egulias\EmailValidator\Result\Result;
7
use Egulias\EmailValidator\Warning\Warning;
7
 
8
 
8
interface CommentStrategy
9
interface CommentStrategy
9
{
10
{
10
    /**
11
    /**
Zeile 11... Zeile 12...
11
     * Return "true" to continue, "false" to exit
12
     * Return "true" to continue, "false" to exit
Zeile -... Zeile 13...
-
 
13
     */
-
 
14
    public function exitCondition(EmailLexer $lexer, int $openedParenthesis): bool;
-
 
15
 
12
     */
16
    public function endOfLoopValidations(EmailLexer $lexer): Result;
13
    public function exitCondition(EmailLexer $lexer, int $openedParenthesis) : bool;
17