Skip to content

Commit

Permalink
Reorder for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
famoser committed Mar 1, 2021
1 parent 969681f commit 2e8acbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bridge/Doctrine/Common/Filter/OrderFilterInterface.php
Expand Up @@ -24,10 +24,10 @@ interface OrderFilterInterface
{
public const DIRECTION_ASC = 'ASC';
public const DIRECTION_DESC = 'DESC';
public const NULLS_ALWAYS_FIRST = 'nulls_always_first';
public const NULLS_ALWAYS_LAST = 'nulls_always_last';
public const NULLS_SMALLEST = 'nulls_smallest';
public const NULLS_LARGEST = 'nulls_largest';
public const NULLS_ALWAYS_FIRST = 'nulls_always_first';
public const NULLS_ALWAYS_LAST = 'nulls_always_last';
public const NULLS_DIRECTION_MAP = [
self::NULLS_SMALLEST => [
'ASC' => 'ASC',
Expand Down

0 comments on commit 2e8acbf

Please sign in to comment.