for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Earnould\LaravelVeloApi;
class Velo
{
protected $veloClient;
public function __construct(VeloClient $veloClient)
$this->veloClient = $veloClient;
}
public function stations()
$stations = $this->veloClient->fetchStations();
return $stations;
public function stationsStatuses()
$stationsStatuses = $this->veloClient->fetchStationsStatuses();
return $stationsStatuses;
public function stationsWithStatus()
return $this->veloClient->fetchStationsWithStatus();