for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ©[2016] SugarCRM Inc. Licensed by SugarCRM under the Apache 2.0 license.
*/
namespace SugarAPI\SDK\EntryPoint\Abstracts\DELETE;
use SugarAPI\SDK\EntryPoint\Abstracts\AbstractEntryPoint;
use SugarAPI\SDK\Request\DELETE;
use SugarAPI\SDK\Response\JSON;
abstract class AbstractDeleteEntryPoint extends AbstractEntryPoint {
public function __construct($url, array $options = array()) {
$this->setRequest(new DELETE());
$this->setResponse(new JSON($this->getRequest()->getCurlObject()));
parent::__construct($url, $options);
}