Http\RequestInterface::getPort

abstract public getPort () ...

Http\Request::getUserAgent

public getUserAgent () Gets HTTP user agent used to made the request

Db\AdapterInterface::createTable

abstract public createTable (mixed $tableName, mixed $schemaName, array $definition) ...

Mvc\View\Engine\Volt\Compiler::getUniquePrefix

public getUniquePrefix () Return a unique prefix to be used as prefix for compiled variables and contexts

Db\Adapter::fetchAll

public array fetchAll (string $sqlQuery, [int $fetchMode], [array $bindParams], [array $bindTypes]) Dumps the complete result of a query into an array //Getting all robots with associative indexes only $robots = $connection->fetchAll("SELECT * FROM robots", Phalcon\Db::FETCH_ASSOC); foreach ($robots as $robot) { print_r($robot); } //Getting all robots that contains word "robot" withing the name $robots = $connection->fetchAll("SELECT * FROM robots WHERE name LIKE :name", Phal

Cli\Router\RouteInterface::getReversedPaths

abstract public getReversedPaths () ...

DispatcherInterface::getActionSuffix

abstract public getActionSuffix () ...

Db\Adapter::addPrimaryKey

public addPrimaryKey (mixed $tableName, mixed $schemaName, Phalcon\Db\IndexInterface $index) Adds a primary key to a table

Mvc\Router\Route::setHttpMethods

public setHttpMethods (mixed $httpMethods) Sets a set of HTTP methods that constraint the matching of the route (alias of via) $route->setHttpMethods('GET'); $route->setHttpMethods(array('GET', 'POST'));

Db\ReferenceInterface::getSchemaName

abstract public getSchemaName () ...