Mvc\Dispatcher

extends abstract class Phalcon\Dispatcher implements Phalcon\Events\EventsAwareInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\DispatcherInterface, Phalcon\Mvc\DispatcherInterface Source on GitHub Dispatching is the process of taking the request object, extracting the module name, controller name, action name, and optional parameters contained in it, and then instantiating a controller and calling an action of that controller. $di = new \Phalcon\Di(); $dispatcher = new \Phalcon\Mvc\Disp

Mvc\Model\Criteria::getConditions

public getConditions () Returns the conditions parameter in the criteria

Di\InjectionAwareInterface::setDI

abstract public setDI (Phalcon\DiInterface $dependencyInjector) ...

Cli\Router\Route::getConverters

public getConverters () Returns the router converter

Mvc\Micro::put

public Phalcon\Mvc\Router\RouteInterface put (string $routePattern, callable $handler) Maps a route to a handler that only matches if the HTTP method is PUT

Acl\Adapter\Memory::getResources

public getResources () Return an array with every resource registered in the list

Mvc\View\Simple::setCacheOptions

public setCacheOptions (array $options) Sets the cache options

Cli\Router\Route::getPaths

public getPaths () Returns the paths

Http\Request::isMethod

public isMethod (mixed $methods, [mixed $strict]) Check if HTTP method match any of the passed methods When strict is true it checks if validated methods are real HTTP methods

Security::getSslVersionNumber

public getSslVersionNumber () Getting OpenSSL or LibreSSL version Parse OPENSSL_VERSION_TEXT because OPENSSL_VERSION_NUMBER is no use for LibreSSL. if ($security->getSslVersionNumber() >= 20105) { // ... }