Image\AdapterInterface::flip

abstract public flip (mixed $direction) ...

Mvc\Model\Resultset\Complex::TYPE_RESULT_PARTIAL

integer TYPE_RESULT_PARTIAL

Db

Source on GitHub Phalcon\Db and its related classes provide a simple SQL database interface for Phalcon Framework. The Phalcon\Db is the basic class you use to connect your PHP application to an RDBMS. There is a different adapter class for each brand of RDBMS. This component is intended to lower level database operations. If you want to interact with databases using higher level of abstraction use Phalcon\Mvc\Model. Phalcon\Db is an abstract class. You only can use it with a database adapter l

Filter

implements Phalcon\FilterInterface Source on GitHub The Phalcon\Filter component provides a set of commonly needed data filters. It provides object oriented wrappers to the php filter extension. Also allows the developer to define his/her own filters $filter = new \Phalcon\Filter(); $filter->sanitize("some(one)@exa\\mple.com", "email"); // returns "[email protected]" $filter->sanitize("hello<<", "string"); // returns "hello" $filter->sanitize("!100a019", "int"); // returns "10001

Session\Adapter::remove

public remove (mixed $index) Removes a session variable from an application context $session->remove('auth');

Logger\Adapter\Syslog::getFormatter

public getFormatter () Returns the internal formatter

Mvc\Model\Query\BuilderInterface::notBetweenWhere

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

Mvc\Collection\Behavior::notify

public notify (mixed $type, Phalcon\Mvc\CollectionInterface $model) This method receives the notifications from the EventsManager

Mvc\Micro\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Mvc\Micro\Collection

implements Phalcon\Mvc\Micro\CollectionInterface Source on GitHub Groups Micro-Mvc handlers as controllers $app = new \Phalcon\Mvc\Micro(); $collection = new Collection(); $collection->setHandler(new PostsController()); $collection->get('/posts/edit/{id}', 'edit'); $app->mount($collection); Methods protected _addMap (string | array $method, string $routePattern, mixed $handler, string $name) Internal function to add a handler to the group public setPrefix (mixed $prefix) Sets