Forms\Element\Password::render

public render ([array $attributes]) Renders the element widget returning html

Mvc\View\Simple::setVar

public setVar (mixed $key, mixed $value) Set a single view parameter $this->view->setVar('products', $products);

Db\AdapterInterface::describeReferences

abstract public describeReferences (mixed $table, [mixed $schema]) ...

Mvc\View\Engine\Volt\Compiler::functionCall

public functionCall (array $expr) Resolves function intermediate code into PHP function calls

Session\Bag::getDI

public getDI () Returns the DependencyInjector container

Cli\Dispatcher::EXCEPTION_NO_DI

integer EXCEPTION_NO_DI

Events\EventInterface::getType

abstract public getType () ...

Annotations Parser

It is the first time that an annotations parser component is written in C for the PHP world. Phalcon\Annotations is a general purpose component that provides ease of parsing and caching annotations in PHP classes to be used in applications. Annotations are read from docblocks in classes, methods and properties. An annotation can be placed at any position in the docblock: /** * This is the class description * * @AmazingClass(true) */ class Example { /** * This a property with a spec

Db\AdapterInterface::connect

abstract public connect ([array $descriptor]) ...

Mvc\Model::update

public update ([mixed $data], [mixed $whiteList]) Updates a model instance. If the instance doesn’t exist in the persistence it will throw an exception Returning true on success or false otherwise. //Updating a robot name $robot = Robots::findFirst("id=100"); $robot->name = "Biomass"; $robot->update();