Skip to content

Commit

Permalink
Deprecate array_filter related constants that should have been deprec…
Browse files Browse the repository at this point in the history
…ated with companion method in 3.2

Signed-off-by: George Steel <[email protected]>
  • Loading branch information
gsteel committed Sep 13, 2023
1 parent 1b76419 commit 0e8f942
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions psalm-baseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,10 @@
</UndefinedInterfaceMethod>
</file>
<file src="test/ArrayUtilsTest.php">
<DeprecatedConstant>
<code>ArrayUtils::ARRAY_FILTER_USE_BOTH</code>
<code>ArrayUtils::ARRAY_FILTER_USE_KEY</code>
</DeprecatedConstant>
<DeprecatedMethod>
<code>ArrayUtils::filter($data, $callback, $flag)</code>
<code><![CDATA[ArrayUtils::filter([], "INVALID")]]></code>
Expand Down
4 changes: 4 additions & 0 deletions src/ArrayUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,15 @@ abstract class ArrayUtils
{
/**
* Compatibility Flag for ArrayUtils::filter
*
* @deprecated
*/
public const ARRAY_FILTER_USE_BOTH = 1;

/**
* Compatibility Flag for ArrayUtils::filter
*
* @deprecated
*/
public const ARRAY_FILTER_USE_KEY = 2;

Expand Down

0 comments on commit 0e8f942

Please sign in to comment.