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\HasView;
class Negotiations extends Endpoint
{
const RESOURCE = 'negotiations';
use HasView;
public function all()
return $this->getResource();
}
public function active()
return $this->getResource('active');
/**
* @param string $id
* @return array
*/
public function messages($id)
return $this->getResource($id . '/messages');