Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1429275
Every.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
Every.php
View Options
<?php
namespace
Hamcrest\Core
;
/*
Copyright (c) 2009 hamcrest.org
*/
use
Hamcrest\Description
;
use
Hamcrest\Matcher
;
use
Hamcrest\TypeSafeDiagnosingMatcher
;
class
Every
extends
TypeSafeDiagnosingMatcher
{
private
$_matcher
;
public
function
__construct
(
Matcher
$matcher
)
{
parent
::
__construct
(
self
::
TYPE_ARRAY
);
$this
->
_matcher
=
$matcher
;
}
protected
function
matchesSafelyWithDiagnosticDescription
(
$items
,
Description
$mismatchDescription
)
{
foreach
(
$items
as
$item
)
{
if
(!
$this
->
_matcher
->
matches
(
$item
))
{
$mismatchDescription
->
appendText
(
'an item '
);
$this
->
_matcher
->
describeMismatch
(
$item
,
$mismatchDescription
);
return
false
;
}
}
return
true
;
}
public
function
describeTo
(
Description
$description
)
{
$description
->
appendText
(
'every item is '
)->
appendDescriptionOf
(
$this
->
_matcher
);
}
/**
* @param Matcher $itemMatcher
* A matcher to apply to every element in an array.
*
* @return \Hamcrest\Core\Every
* Evaluates to TRUE for a collection in which every item matches $itemMatcher
*
* @factory
*/
public
static
function
everyItem
(
Matcher
$itemMatcher
)
{
return
new
self
(
$itemMatcher
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 17:21 (10 h, 26 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ec/64/69ce473dba03cfed4e27dcf378a9
Default Alt Text
Every.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment