Logger\Adapter::isTransaction

public isTransaction () Returns the whether the logger is currently in an active transaction or not

Db\Dialect\Mysql::dropColumn

public dropColumn (mixed $tableName, mixed $schemaName, mixed $columnName) Generates SQL to delete a column from a table

ValidationInterface::add

abstract public add (mixed $field, Phalcon\Validation\ValidatorInterface $validator) ...

Validation\Validator\Alnum::validate

public validate (Phalcon\Validation $validation, mixed $field) Executes the validation

Session\Adapter\Memcache::destroy

public destroy ([mixed $sessionId])

Mvc\Model\Transaction::setTransactionManager

public setTransactionManager (Phalcon\Mvc\Model\Transaction\ManagerInterface $manager) Sets transaction manager related to the transaction

Mvc\UrlInterface::path

abstract public path ([mixed $path]) ...

Cache\BackendInterface::save

abstract public save ([mixed $keyName], [mixed $content], [mixed $lifetime], [mixed $stopBuffer]) ...

Db\Adapter::fetchColumn

public string | ** fetchColumn (string $sqlQuery, [array $placeholders], [int | string $column]) Returns the n’th field of first row in a SQL query result //Getting count of robots $robotsCount = $connection->fetchColumn("SELECT count(*) FROM robots"); print_r($robotsCount); //Getting name of last edited robot $robot = $connection->fetchColumn("SELECT id, name FROM robots order by modified desc", 1); print_r($robot);

Mvc\Model::setReadConnectionService

public setReadConnectionService (mixed $connectionService) Sets the DependencyInjection connection service name used to read data