Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Last active February 28, 2016 19:46
Show Gist options
  • Save andevsoftware/178d403a542689875279 to your computer and use it in GitHub Desktop.
Save andevsoftware/178d403a542689875279 to your computer and use it in GitHub Desktop.
Phalcon REST - Create Collection Response
<?php
class CustomController extends \PhalconRest\Mvc\Controller\Fractal
{
public function all() {
return $this->createCollectionResponse($items, new ItemTransformer, 'items');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment