for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created for IG Monitoring.
* User: jakim <[email protected]>
* Date: 20.08.2018
*/
namespace app\dictionaries;
class AccountInvalidationType extends Dictionary
{
const IS_PRIVATE = 1;
const NOT_FOUND = 2;
const RESTRICTED_PROFILE = 3;
public static function labels(): array
return [
self::IS_PRIVATE => 'Is private',
self::NOT_FOUND => 'Not found',
self::RESTRICTED_PROFILE => 'Restricted profile',
];
}