📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 21:10:22
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
/
Internal
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal
🔄 Refresh
✏️
Editing: SelfDescribingValue.php
Writable
<?php namespace Hamcrest\Internal; /* Copyright (c) 2009 hamcrest.org */ use Hamcrest\Description; use Hamcrest\SelfDescribing; /** * A wrapper around any value so that it describes itself. */ class SelfDescribingValue implements SelfDescribing { private $_value; public function __construct($value) { $this->_value = $value; } public function describeTo(Description $description) { $description->appendValue($this->_value); } }
💾 Save Changes
❌ Cancel