Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431573
IsIdentical.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
708 B
Referenced Files
None
Subscribers
None
IsIdentical.php
View Options
<?php
namespace
Hamcrest\Core
;
/*
Copyright (c) 2009 hamcrest.org
*/
use
Hamcrest\Description
;
/**
* The same as {@link Hamcrest\Core\IsSame} but with slightly different
* semantics.
*/
class
IsIdentical
extends
IsSame
{
private
$_value
;
public
function
__construct
(
$value
)
{
parent
::
__construct
(
$value
);
$this
->
_value
=
$value
;
}
public
function
describeTo
(
Description
$description
)
{
$description
->
appendValue
(
$this
->
_value
);
}
/**
* Tests of the value is identical to $value as tested by the "===" operator.
*
* @factory
*/
public
static
function
identicalTo
(
$value
)
{
return
new
self
(
$value
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:47 (1 d, 11 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
35/ae/2bef73a69e0b021de3dbe73b9612
Default Alt Text
IsIdentical.php (708 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment