| 1 | <?php |
||
| 12 | class ListMessageRequestConfiguration implements ConfigurationInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var int |
||
| 16 | */ |
||
| 17 | const DEFAULT_PAGE = 1; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | */ |
||
| 22 | const DEFAULT_LIMIT = 100; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | const MESSAGE_ORDER_INVALID_TYPE = 'Order invalid type.'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return TreeBuilder |
||
| 31 | */ |
||
| 32 | public function getConfigTreeBuilder() |
||
| 63 | } |
||
| 64 |