base\InvalidParamException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

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.

helpers\BaseConsole hideCursor()

hideCursor() public static method Hides the cursor by sending ANSI DECTCEM code ?25l to the terminal. Use showCursor() to bring it back. Do not forget to show cursor when your application exits. Cursor might stay hidden in terminal after exit. public static void hideCursor ( )

sphinx\Schema quoteSimpleColumnName()

quoteSimpleColumnName() public method Quotes a column name for use in a query. A simple column name has no prefix. public string quoteSimpleColumnName ( $name )$name string Column name return string The properly quoted column name

helpers\BaseConsole showCursor()

showCursor() public static method Will show a cursor again when it has been hidden by hideCursor() by sending ANSI DECTCEM code ?25h to the terminal. public static void showCursor ( )

gii\generators\controller\Generator $controllerFile

$controllerFile public read-only property The controller class file path public string getControllerFile ( )

db\Connection $transaction

$transaction public read-only property The currently active transaction. Null if no active transaction. public yii\db\Transaction getTransaction ( )

debug\panels\TimelinePanel $detail

$detail public read-only property Content that is displayed in debugger detail view public string getDetail ( )

base\Controller setView()

setView() public method Sets the view object to be used by this controller. public void setView ( $view )$view yii\base\View|yii\web\View The view object that can be used to render views or view files.

base\ViewRenderer render()

render() public abstract method Renders a view file. This method is invoked by yii\base\View whenever it tries to render a view. Child classes must implement this method to render the given view file. public abstract string render ( $view, $file, $params )$view yii\base\View The view object used for rendering the file. $file string The view file. $params array The parameters to be passed to the view file. return string The rendering result