mongodb\Query min()

min() public method Returns the minimum of the specified column values. public integer min ( $q, $db = null )$q string The column name. Make sure you properly quote column names in the expression. $db yii\mongodb\Connection The database connection used to generate the SQL statement. If this parameter is not given, the db application component will be used. return integer The minimum of the specified column values.

swiftmailer\Message setReadReceiptTo()

setReadReceiptTo() public method (available since version 2.0.6) Sets the ask for a delivery receipt from the recipient to be sent to $addresses. public $this setReadReceiptTo ( $addresses )$addresses string|array Receipt receive email address(es). return $this Self reference.

rest\UrlRule $tokens

$tokens public property List of tokens that should be replaced for each pattern. The keys are the token names, and the values are the corresponding replacements. See also $patterns. public array $tokens = ['{id}' => '<id:\\d[\\d,]*>']

helpers\BaseConsole moveCursorTo()

moveCursorTo() public static method Moves the cursor to an absolute position given as column and row by sending ANSI control code CUP or CHA to the terminal. public static void moveCursorTo ( $column, $row = null )$column integer 1-based column number, 1 is the left edge of the screen. $row integer|null 1-based row number, 1 is the top edge of the screen. if not set, will move cursor only in current line.

log\Target collect()

collect() public method Processes the given log messages. This method will filter the given messages with $levels and $categories. And if requested, it will also export the filtering result to specific medium (e.g. email). public void collect ( $messages, $final )$messages array Log messages to be processed. See yii\log\Logger::$messages for the structure of each message. $final boolean Whether this method is called at the end of the current application

authclient\signature\RsaSha1 $privateCertificateFile

$privateCertificateFile public property Path to the file, which holds private key certificate. public string $privateCertificateFile = ''

console\Markdown renderCode()

renderCode() protected method Renders a code block protected string renderCode ( $block )$block array

validators\DateValidator validateValue()

validateValue() protected method Validates a value. A validator class can implement this method to support data validation out of the context of a data model. protected array|null validateValue ( $value )$value mixed The data value to be validated. return array|null The error message and the parameters to be inserted into the error message. Null should be returned if the data is valid. throws yii\base\NotSupportedException if the validator does not supporting data validation withou

db\Command queryInternal()

queryInternal() protected method (available since version 2.0.1) Performs the actual DB query of a SQL statement. protected mixed queryInternal ( $method, $fetchMode = null )$method string Method of PDOStatement to be called $fetchMode integer The result fetch mode. Please refer to PHP manual for valid fetch modes. If this parameter is null, the value set in $fetchMode will be used. return mixed The method execution result throws yii\db\Exception if the query causes any problem

base\Module afterAction()

afterAction() public method This method is invoked right after an action within this module is executed. The method will trigger the EVENT_AFTER_ACTION event. The return value of the method will be used as the action return value. If you override this method, your code should look like the following: public function afterAction($action, $result) { $result = parent::afterAction($action, $result); // your custom code here return $result; } public mixed afterAction ( $action, $r