PHP code example of auto1-oss / service-api-components-bundle
1. Go to this page and download the library: Download auto1-oss/service-api-components-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
auto1-oss / service-api-components-bundle example snippets
class YourProvider implements EndpointProviderInterface
{
public function getEndpoints(): array
{
return [
new EndpointImmutable(
...,
),
];
}
}
class GetCarDetailsByVinRequest implements ServiceRequestInterface
{
private $vin;
public function setVin(string $vin): self
{
$this->vin = $vin;
return $this;
}
public function getVin()
{
return $this->vin;
}
}