Mvc\View\Engine\Volt\Compiler::compileFile

public string | array compileFile (string $path, string $compiledPath, [boolean $extendsMode]) Compiles a template into a file forcing the destination path $compiler->compile('views/layouts/main.volt', 'views/layouts/main.volt.php');

Mvc\Model\CriteriaInterface::notBetweenWhere

abstract public notBetweenWhere (mixed $expr, mixed $minimum, mixed $maximum) ...

Application::registerModules

public registerModules (array $modules, [mixed $merge]) Register an array of modules present in the application $this->registerModules( [ 'frontend' => [ 'className' => 'Multiple\Frontend\Module', 'path' => '../apps/frontend/Module.php' ], 'backend' => [ 'className' => 'Multiple\Backend\Module', 'path' => '../apps/backend/Module.php'

Mvc\Micro\CollectionInterface::getHandler

abstract public getHandler () ...

Db\Adapter::limit

public limit (mixed $sqlQuery, mixed $number) Appends a LIMIT clause to $sqlQuery argument echo $connection->limit("SELECT * FROM robots", 5);

Mvc\Url::setBaseUri

public setBaseUri (mixed $baseUri) Sets a prefix for all the URIs to be generated $url->setBaseUri('/invo/'); $url->setBaseUri('/invo/index.php/');

Http\ResponseInterface::setContentLength

abstract public setContentLength (mixed $contentLength) ...

Mvc\Model\MetaData\Memory::MODELS_PRIMARY_KEY

integer MODELS_PRIMARY_KEY

Events\Manager

implements Phalcon\Events\ManagerInterface Source on GitHub Phalcon Events Manager, offers an easy way to intercept and manipulate, if needed, the normal flow of operation. With the EventsManager the developer can create hooks or plugins that will offer monitoring of data, manipulation, conditional execution and much more. Methods public attach (string $eventType, object | callable $handler, [int $priority]) Attach a listener to the events manager public detach (string $eventType, object $handl

Mvc\Micro::getReturnedValue

public mixed getReturnedValue () Returns the value returned by the executed handler