Inheritance: extends PhalconRest\Mvc\Plugin
 public function documentation()
 {
     /** @var \Phalcon\Config $config */
     $config = $this->di->get(Services::CONFIG);
     $documentation = new Documentation($config->application->title, $config->hostName);
     $documentation->addManyCollections($this->application->getCollections());
     $documentation->addManyRoutes($this->application->getRouter()->getRoutes());
     return $this->createItemResponse($documentation, new DocumentationTransformer(), 'documentation');
 }
 public function includeCollections(Documentation $documentation)
 {
     return $this->collection($documentation->getCollections(), new ApiCollectionTransformer());
 }