Д
Size: a a a
Д
DS
/**
* @property-read string $shortname
* @property-read string $supportProjectTags
*/
class \Project\Department extends Enum
{
private const WEBDEV = \Shared\Department::WEBDEV;
private const ADV = \Shared\Department::ADV;
public static function items()
{
return [
self::WEBDEV => [
'name' => 'Веб-разработка',
'shortName' => 'Вебдев',
'supportProjectTags' => true,
],
self::ADV => [
'name' => 'Отдел рекламы',
'shortName' => 'Реклама',
'supportProjectTags' => false,
],
];
}
}
СП
DS
СП
DS
СП
DS
СП
Д
А
А
Д
PSR Naming Conventions says:
RM
AM
PSR Naming Conventions says:
AM
AM
Д
В