for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the feed-io package.
*
* (c) Alexandre Debril <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FeedIo\Adapter;
/**
* Null HTTP Response
class NullResponse implements ResponseInterface
{
* @return string
public function getBody()
return;
}
* @return boolean
public function isModified()
return true;
* @return \DateTime
public function getLastModified()
return new \DateTime('@0');
* @return array
public function getHeaders()
return array();
* @param string $name
* @return array|string
public function getHeader($name)
return $name;