Page MenuHomeWickedGov Phorge

DiagnosingMatcher.php
No OneTemporary

Size
603 B
Referenced Files
None
Subscribers
None

DiagnosingMatcher.php

<?php
namespace Hamcrest;
/*
Copyright (c) 2009 hamcrest.org
*/
/**
* Official documentation for this class is missing.
*/
abstract class DiagnosingMatcher extends BaseMatcher
{
final public function matches($item)
{
return $this->matchesWithDiagnosticDescription($item, new NullDescription());
}
public function describeMismatch($item, Description $mismatchDescription)
{
$this->matchesWithDiagnosticDescription($item, $mismatchDescription);
}
abstract protected function matchesWithDiagnosticDescription($item, Description $mismatchDescription);
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 18:39 (5 h, 46 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a3/4d/8202e40aff3d26113c993d6ac19f
Default Alt Text
DiagnosingMatcher.php (603 B)

Event Timeline