📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 19:18:12
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest
🔄 Refresh
✏️
Editing: BaseMatcher.php
Writable
<?php namespace Hamcrest; /* Copyright (c) 2009 hamcrest.org */ /** * BaseClass for all Matcher implementations. * * @see Hamcrest\Matcher */ abstract class BaseMatcher implements Matcher { public function describeMismatch($item, Description $description) { $description->appendText('was ')->appendValue($item); } public function __toString() { return StringDescription::toString($this); } public function __invoke() { return call_user_func_array(array($this, 'matches'), func_get_args()); } }
💾 Save Changes
❌ Cancel