X7ROOT File Manager
Current Path:
/home/prisjneg/public_html/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest
home
/
prisjneg
/
public_html
/
vendor
/
hamcrest
/
hamcrest-php
/
hamcrest
/
Hamcrest
/
📁
..
📁
Arrays
📄
AssertionError.php
(119 B)
📄
BaseDescription.php
(3.1 KB)
📄
BaseMatcher.php
(565 B)
📁
Collection
📁
Core
📄
Description.php
(1.65 KB)
📄
DiagnosingMatcher.php
(603 B)
📄
FeatureMatcher.php
(1.95 KB)
📁
Internal
📄
Matcher.php
(1.59 KB)
📄
MatcherAssert.php
(3.31 KB)
📄
Matchers.php
(18.52 KB)
📄
NullDescription.php
(699 B)
📁
Number
📄
SelfDescribing.php
(535 B)
📄
StringDescription.php
(1.1 KB)
📁
Text
📁
Type
📄
TypeSafeDiagnosingMatcher.php
(841 B)
📄
TypeSafeMatcher.php
(2.85 KB)
📄
Util.php
(2.02 KB)
📁
Xml
Editing: Description.php
<?php namespace Hamcrest; /* Copyright (c) 2009 hamcrest.org */ /** * A description of a Matcher. A Matcher will describe itself to a description * which can later be used for reporting. * * @see Hamcrest\Matcher::describeTo() */ interface Description { /** * Appends some plain text to the description. * * @param string $text * * @return \Hamcrest\Description */ public function appendText($text); /** * Appends the description of a {@link Hamcrest\SelfDescribing} value to * this description. * * @param \Hamcrest\SelfDescribing $value * * @return \Hamcrest\Description */ public function appendDescriptionOf(SelfDescribing $value); /** * Appends an arbitrary value to the description. * * @param mixed $value * * @return \Hamcrest\Description */ public function appendValue($value); /** * Appends a list of values to the description. * * @param string $start * @param string $separator * @param string $end * @param array|\IteratorAggregate|\Iterator $values * * @return \Hamcrest\Description */ public function appendValueList($start, $separator, $end, $values); /** * Appends a list of {@link Hamcrest\SelfDescribing} objects to the * description. * * @param string $start * @param string $separator * @param string $end * @param array|\\IteratorAggregate|\\Iterator $values * must be instances of {@link Hamcrest\SelfDescribing} * * @return \Hamcrest\Description */ public function appendList($start, $separator, $end, $values); }
Upload File
Create Folder