for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace seregazhuk\Favro\Api\Endpoints;
class Cards extends CrudEndpoint
{
/**
* @var string
*/
protected $endpoint = 'cards';
* @param string $cardId
* @param bool $everywhere
* @return mixed
public function delete($cardId, $everywhere)
return $this
->getHttp()
->delete(
$this->makeRequestUrl($cardId),
['everywhere' => $everywhere],
$this->getHeaders()
);
}