web\MethodNotAllowedHttpException __construct()

__construct() public method Constructor. public void __construct ( $message = null, $code = 0, Exception $previous = null )$message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

helpers\BaseConsole moveCursorUp()

moveCursorUp() public static method Moves the terminal cursor up by sending ANSI control code CUU to the terminal. If the cursor is already at the edge of the screen, this has no effect. public static void moveCursorUp ( $rows = 1 )$rows integer Number of rows the cursor should be moved up

db\BaseActiveRecord isPrimaryKey()

isPrimaryKey() public static method Returns a value indicating whether the given set of attributes represents the primary key for this model public static boolean isPrimaryKey ( $keys )$keys array The set of attributes to check return boolean Whether the given set of attributes represents the primary key for this model

debug\panels\MailPanel getDetail()

getDetail() public method public string getDetail ( )return string Content that is displayed in debugger detail view

caching\ExpressionDependency generateDependencyData()

generateDependencyData() protected method Generates the data needed to determine if dependency has been changed. This method returns the result of the PHP expression. protected mixed generateDependencyData ( $cache )$cache yii\caching\Cache The cache component that is currently evaluating this dependency return mixed The data needed to determine if dependency has been changed.

db\Migration safeDown()

safeDown() public method This method contains the logic to be executed when removing this migration. This method differs from down() in that the DB logic implemented here will be enclosed within a DB transaction. Child classes may implement this method instead of down() if the DB logic needs to be within a transaction. public boolean safeDown ( )return boolean Return a false value to indicate the migration fails and should not proceed further. All other return values mean the migration s

authclient\OAuth1 $consumerSecret

$consumerSecret public property OAuth consumer secret. public string $consumerSecret = null

sphinx\Command createTable()

createTable() public method Creates a SQL command for creating a new DB table. The columns in the new table should be specified as name-definition pairs (e.g. 'name' => 'string'), where name stands for a column name which will be properly quoted by the method, and definition stands for the column type which can contain an abstract DB type. The method yii\sphinx\QueryBuilder::getColumnType() will be called to convert the abstract column types to physical ones. For example, string will be

mongodb\ActiveRecord delete()

delete() public method Deletes the document corresponding to this active record from the collection. This method performs the following steps in order: call beforeDelete(). If the method returns false, it will skip the rest of the steps; delete the document from the collection; call afterDelete(). In the above step 1 and 3, events named EVENT_BEFORE_DELETE and EVENT_AFTER_DELETE will be raised by the corresponding methods. public integer|boolean delete ( )return integer|boolean The num

grid\Column renderFilterCellContent()

renderFilterCellContent() protected method Renders the filter cell content. The default implementation simply renders a space. This method may be overridden to customize the rendering of the filter cell (if any). protected string renderFilterCellContent ( )return string The rendering result