Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431656
IsArrayContainingInAnyOrder.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
IsArrayContainingInAnyOrder.php
View Options
<?php
namespace
Hamcrest\Arrays
;
/*
Copyright (c) 2009 hamcrest.org
*/
use
Hamcrest\Description
;
use
Hamcrest\TypeSafeDiagnosingMatcher
;
use
Hamcrest\Util
;
/**
* Matches if an array contains a set of items satisfying nested matchers.
*/
class
IsArrayContainingInAnyOrder
extends
TypeSafeDiagnosingMatcher
{
private
$_elementMatchers
;
public
function
__construct
(
array
$elementMatchers
)
{
parent
::
__construct
(
self
::
TYPE_ARRAY
);
Util
::
checkAllAreMatchers
(
$elementMatchers
);
$this
->
_elementMatchers
=
$elementMatchers
;
}
protected
function
matchesSafelyWithDiagnosticDescription
(
$array
,
Description
$mismatchDescription
)
{
$matching
=
new
MatchingOnce
(
$this
->
_elementMatchers
,
$mismatchDescription
);
foreach
(
$array
as
$element
)
{
if
(!
$matching
->
matches
(
$element
))
{
return
false
;
}
}
return
$matching
->
isFinished
(
$array
);
}
public
function
describeTo
(
Description
$description
)
{
$description
->
appendList
(
'['
,
', '
,
']'
,
$this
->
_elementMatchers
)
->
appendText
(
' in any order'
)
;
}
/**
* An array with elements that match the given matchers.
*
* @factory containsInAnyOrder ...
*/
public
static
function
arrayContainingInAnyOrder
(
/* args... */
)
{
$args
=
func_get_args
();
return
new
self
(
Util
::
createMatcherArray
(
$args
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:55 (1 d, 9 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
23/22/81b70ec8714dda90e8acd9863307
Default Alt Text
IsArrayContainingInAnyOrder.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment