for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace seregazhuk\HeadHunterApi\EndPoints;
use seregazhuk\HeadHunterApi\Traits\HasAll;
class Metro extends Endpoint
{
use HasAll;
const RESOURCE = 'metro';
/**
* @param int $cityId
* @return array
*/
public function forCity($cityId)
return $this->getResource($cityId);
}