Logger\Adapter::commit

public commit () Commits the internal transaction

Http\Response\Headers

implements Phalcon\Http\Response\HeadersInterface Source on GitHub This class is a bag to manage the response headers Methods public set (mixed $name, mixed $value) Sets a header to be sent at the end of the request public get (mixed $name) Gets a header value from the internal bag public setRaw (mixed $header) Sets a raw header to be sent at the end of the request public remove (mixed $header) Removes a header to be sent at the end of the request public send () Sends the headers to the client

Forms\ElementInterface::setFilters

abstract public setFilters (mixed $filters) ...

Db\Index::getColumns

public getColumns () Index columns

Mvc\Model::average

public static double average ([array $parameters]) Allows to calculate the average value on a column matching the specified conditions //What's the average price of robots? $average = Robots::average(array('column' => 'price')); echo "The average price is ", $average, "\n"; //What's the average price of mechanical robots? $average = Robots::average(array("type='mechanical'", 'column' => 'price')); echo "The average price of mechanical robots is ", $average, "\n";

Forms\Element::getMessages

public getMessages () Returns the messages that belongs to the element The element needs to be attached to a form

Mvc\View\Simple::__set

public __set (mixed $key, mixed $value) Magic method to pass variables to the views $this->view->products = $products;

Mvc\Micro\Collection::patch

public Phalcon\Mvc\Micro\Collection patch (string $routePattern, callable $handler, [string $name]) Maps a route to a handler that only matches if the HTTP method is PATCH

Mvc\Model::setConnectionService

public setConnectionService (mixed $connectionService) Sets the DependencyInjection connection service name

Mvc\RouterInterface::getActionName

abstract public getActionName () ...