Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Last active February 28, 2016 19:47
Show Gist options
  • Save andevsoftware/f6d62944a2ecb38238b0 to your computer and use it in GitHub Desktop.
Save andevsoftware/f6d62944a2ecb38238b0 to your computer and use it in GitHub Desktop.
Phalcon REST - Create OK Response
<?php
class CustomController extends \PhalconRest\Mvc\Controller\Fractal
{
public function delete($id) {
// Remove object code here
return $this->createOkResponse();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment