Translate\Adapter\NativeArray::exists

public exists (mixed $index) Check whether is defined a translation key in the internal array

Di::offsetExists

public offsetExists (mixed $name) Check if a service is registered using the array syntax

Db::FETCH_PROPS_LATE

integer FETCH_PROPS_LATE

Image\Adapter::getImage

public getImage () ...

Validation\Validator\Date

extends abstract class Phalcon\Validation\Validator implements Phalcon\Validation\ValidatorInterface Source on GitHub Checks if a value is a valid date use Phalcon\Validation\Validator\Date as DateValidator; $validator->add('date', new DateValidator([ 'format' => 'd-m-Y', 'message' => 'The date is invalid' ])); $validator->add(['date','anotherDate'], new DateValidator([ 'format' => [ 'date' => 'd-m-Y', 'anotherDate' => 'Y-m-d' ],

Validation\Message\Group::filter

public array filter (string $fieldName) Filters the message group by field name

Queue\Beanstalk\Job

Source on GitHub Represents a job in a beanstalk queue Methods public getId () public getBody () public __construct (Phalcon\Queue\Beanstalk $queue, mixed $id, mixed $body) public delete () Removes a job from the server entirely public release ([mixed $priority], [mixed $delay]) The release command puts a reserved job back into the ready queue (and marks its state as “ready”) to be run by any client. It is normally used when the job fails because of a transitory error. public bury ([mixed $prio

Mvc\Model\MetaData\Apc::MODELS_DATA_TYPES_BIND

integer MODELS_DATA_TYPES_BIND

Db::FETCH_COLUMN

integer FETCH_COLUMN

Mvc\Collection::getMessages

public getMessages () Returns all the validation messages $robot = new Robots(); $robot->type = 'mechanical'; $robot->name = 'Astro Boy'; $robot->year = 1952; if ($robot->save() == false) { echo "Umh, We can't store robots right now "; foreach ($robot->getMessages() as message) { echo message; } } else { echo "Great, a new robot was saved successfully!"; }