11 lines
155 B
PHP
11 lines
155 B
PHP
|
<?php
|
||
|
|
||
|
namespace AnotherNamespace\Annotations;
|
||
|
|
||
|
/**
|
||
|
* @Annotation
|
||
|
*/
|
||
|
class Constants
|
||
|
{
|
||
|
const INVALID_TIMEZONE_LOCATION = "invalidTimezoneLocation";
|
||
|
}
|