Skip to content

Commit f7ab0e2

Browse files
committed
Sort FilterOptions constants
1 parent 047bc08 commit f7ab0e2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/FilterOptions.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ final class FilterOptions
77
/**
88
* @var string
99
*/
10-
const DEFAULT_VALUE = 'default';
10+
const CONFLICTS_WITH = 'conflictsWith';
1111

1212
/**
1313
* @var string
@@ -17,20 +17,20 @@ final class FilterOptions
1717
/**
1818
* @var string
1919
*/
20-
const IS_REQUIRED = 'required';
20+
const DEFAULT_VALUE = 'default';
2121

2222
/**
2323
* @var string
2424
*/
25-
const CONFLICTS_WITH = 'conflictsWith';
25+
const IS_REQUIRED = 'required';
2626

2727
/**
2828
* @var string
2929
*/
30-
const USES = 'uses';
30+
const THROW_ON_ERROR = 'throwOnError';
3131

3232
/**
3333
* @var string
3434
*/
35-
const THROW_ON_ERROR = 'throwOnError';
35+
const USES = 'uses';
3636
}

0 commit comments

Comments
 (0)