Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Last active February 28, 2016 19:47
Show Gist options
  • Save andevsoftware/e3583ce40b5a8b4ef2f3 to your computer and use it in GitHub Desktop.
Save andevsoftware/e3583ce40b5a8b4ef2f3 to your computer and use it in GitHub Desktop.
Phalcon REST - Custom Controller
<?php
class CustomController extends \PhalconRest\Mvc\Controller\Fractal
{
public function createResponse($response) {
// For example
if ($this->responseValid($response)) {
return $response;
}
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment