Deleted unnecessary constans

This commit is contained in:
Kevin Frantz 2019-03-28 23:53:40 +01:00
parent 62f953c706
commit 84e7122913

View File

@ -9,54 +9,6 @@ namespace Infinito\Domain\ParameterManagement;
*/
interface OptionalGetParameterServiceInterface
{
/**
* @deprecated
*
* @var string
*/
const EXECUTE_PARAMETER = 'execute';
/**
* @deprecated
*
* @var string
*/
const VIEW_PARAMETER = 'view';
/**
* @deprecated
*
* @var string
*/
const CLASS_PARAMETER = 'class';
/**
* @deprecated
*
* @var string
*/
const FRAME_PARAMETER = 'frame';
/**
* @deprecated
*
* @var string
*/
const SCHEMA_PARAMETER = 'schema';
/**
* @deprecated
*
* @var array|string[]
*/
const OPTIONAL_PARAMETERS = [
self::VIEW_PARAMETER,
self::CLASS_PARAMETER,
self::FRAME_PARAMETER,
self::SCHEMA_PARAMETER,
self::EXECUTE_PARAMETER,
];
/**
* @param string $key
*