sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
699 B
43 lines
699 B
<?php
|
|
namespace Hamcrest;
|
|
|
|
/*
|
|
Copyright (c) 2009 hamcrest.org
|
|
*/
|
|
|
|
/**
|
|
* Null implementation of {@link Hamcrest\Description}.
|
|
*/
|
|
class NullDescription implements Description
|
|
{
|
|
|
|
public function appendText($text)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function appendDescriptionOf(SelfDescribing $value)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function appendValue($value)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function appendValueList($start, $separator, $end, $values)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function appendList($start, $separator, $end, $values)
|
|
{
|
|
return $this;
|
|
}
|
|
|
|
public function __toString()
|
|
{
|
|
return '';
|
|
}
|
|
}
|
|
|