Http\RequestInterface::isTrace

abstract public isTrace () ...

Mvc\Model\Query\Builder::distinct

public distinct (mixed $distinct) Sets SELECT DISTINCT / SELECT ALL flag $builder->distinct("status"); $builder->distinct(null);

Returning Responses

Part of the HTTP cycle is returning responses to clients. Phalcon\Http\Response is the Phalcon component designed to achieve this task. HTTP responses are usually composed by headers and body. The following is an example of basic usage: use Phalcon\Http\Response; // Getting a response instance $response = new Response(); // Set status code $response->setStatusCode(404, "Not Found"); // Set the content of the response $response->setContent("Sorry, the page doesn't exist"); // Send resp

Mvc\Model\Query\BuilderInterface::innerJoin

abstract public innerJoin (mixed $model, [mixed $conditions], [mixed $alias]) ...

Mvc\Router::getRouteById

public getRouteById (mixed $id) Returns a route object by its id

Db\Dialect\Mysql::addForeignKey

public addForeignKey (mixed $tableName, mixed $schemaName, Phalcon\Db\ReferenceInterface $reference) Generates SQL to add an index to a table

Db\Adapter::describeIndexes

public Phalcon\Db\Index[] describeIndexes (string $table, [string $schema]) Lists table indexes print_r($connection->describeIndexes('robots_parts'));

Db\DialectInterface::addForeignKey

abstract public addForeignKey (mixed $tableName, mixed $schemaName, Phalcon\Db\ReferenceInterface $reference) ...

Di::getServices

public getServices () Return the services registered in the DI

Db\ColumnInterface::getScale

abstract public getScale () ...