Page MenuHomeWickedGov Phorge

IsIdentical.php
No OneTemporary

Size
708 B
Referenced Files
None
Subscribers
None

IsIdentical.php

<?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

Mime Type
text/x-php
Expires
Sat, May 16, 20:47 (1 d, 8 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
35/ae/2bef73a69e0b021de3dbe73b9612
Default Alt Text
IsIdentical.php (708 B)

Event Timeline