for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EVB\Weather;
/**
* Mock class for EVB\Weather\CurlWrapper
*/
class MockCurlWrapper extends CurlWrapper
{
private $response;
public function __construct($response)
$this->response = $response;
}
public function fetch(string $url) : string
return $this->response;