for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EVB\Weather;
/**
* Class for fetching weather data from an API.
*/
class ExampleWeather extends Weather
{
private $data;
public function __construct($data)
$this->data = $data;
}
public function getWeather(string $latitude, string $longitude)
return $this->data;