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 991
Zeile 45... Zeile 45...
45
/**
45
/**
46
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
46
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
47
 */
47
 */
48
class DefaultResultPrinter extends Printer implements ResultPrinter
48
class DefaultResultPrinter extends Printer implements ResultPrinter
49
{
49
{
50
    public const EVENT_TEST_START = 0;
50
    public const EVENT_TEST_START      = 0;
51
 
-
 
52
    public const EVENT_TEST_END = 1;
51
    public const EVENT_TEST_END        = 1;
53
 
-
 
54
    public const EVENT_TESTSUITE_START = 2;
52
    public const EVENT_TESTSUITE_START = 2;
55
 
-
 
56
    public const EVENT_TESTSUITE_END = 3;
53
    public const EVENT_TESTSUITE_END   = 3;
57
 
-
 
58
    public const COLOR_NEVER = 'never';
54
    public const COLOR_NEVER           = 'never';
59
 
-
 
60
    public const COLOR_AUTO = 'auto';
55
    public const COLOR_AUTO            = 'auto';
61
 
-
 
62
    public const COLOR_ALWAYS = 'always';
56
    public const COLOR_ALWAYS          = 'always';
63
 
-
 
64
    public const COLOR_DEFAULT = self::COLOR_NEVER;
57
    public const COLOR_DEFAULT         = self::COLOR_NEVER;
65
 
-
 
66
    private const AVAILABLE_COLORS = [self::COLOR_NEVER, self::COLOR_AUTO, self::COLOR_ALWAYS];
58
    private const AVAILABLE_COLORS     = [self::COLOR_NEVER, self::COLOR_AUTO, self::COLOR_ALWAYS];
Zeile 67... Zeile 59...
67
 
59
 
68
    /**
60
    /**
69
     * @var int
61
     * @var int
70
     */
62
     */