Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
:
DiagnosingMatcher.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); }