for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace XmlSchemaValidator\Downloader;
class NullDownloader implements DownloaderInterface
{
public function download($url, $timeout)
throw new \RuntimeException("Download fail for url $url due Null downloader");
}