14 lines
296 B
PHP
14 lines
296 B
PHP
<?php
|
|
|
|
namespace Ulmus\SearchRequest\Attribute;
|
|
|
|
enum PropertyValueSource
|
|
{
|
|
case QueryParams;
|
|
|
|
case RequestAttribute;
|
|
|
|
public const ATTRIBUTE_FIRST = [ self::RequestAttribute, self::QueryParams ];
|
|
|
|
public const QUERY_PARAMS_FIRST = [ self::QueryParams, self::RequestAttribute ];
|
|
} |