Skip to content

Commit de69b89

Browse files
committed
Add FilterOptions
1 parent d8c2b4f commit de69b89

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

src/FilterOptions.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
namespace TraderInteractive;
4+
5+
final class FilterOptions
6+
{
7+
/**
8+
* @var string
9+
*/
10+
const DEFAULT_VALUE = 'default';
11+
12+
/**
13+
* @var string
14+
*/
15+
const CUSTOM_ERROR = 'error';
16+
17+
/**
18+
* @var string
19+
*/
20+
const IS_REQUIRED = 'required';
21+
}

0 commit comments

Comments
 (0)