File: DummyEnum.php

package info (click to toggle)
php-webmozart-assert 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,208 kB
  • sloc: php: 7,027; makefile: 13; xml: 13
file content (11 lines) | stat: -rw-r--r-- 210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
<?php

declare(strict_types=1);

namespace Webmozart\Assert\Tests;

// The filename must be different from the class name to be ignored by composer PSR-4 autoloading rules
enum DummyEnum
{
    case CaseName;
}