Page MenuHomeWickedGov Phorge

NullDescription.php
No OneTemporary

Size
699 B
Referenced Files
None
Subscribers
None

NullDescription.php

<?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 '';
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, May 16, 17:33 (8 h, 28 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
34/9b/8869eb1fbe936ff00c5f93d1767f
Default Alt Text
NullDescription.php (699 B)

Event Timeline