gii\generators\module\Generator getName()

getName() public method public string getName ( )return string Name of the code generator

codeception\TestCase mockApplication()

mockApplication() protected method Mocks up the application instance. protected yii\web\Application|yii\console\Application mockApplication ( $config = null )$config array The configuration that should be used to generate the application instance. If null, $appConfig will be used. return yii\web\Application|yii\console\Application The application instance throws yii\base\InvalidConfigException if the application configuration is invalid

debug\panels\RequestPanel getName()

getName() public method public string getName ( )return string Name of the panel

rbac\PhpManager removeChild()

removeChild() public method Removes a child from its parent. Note, the child item is not deleted. Only the parent-child relationship is removed. public boolean removeChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the removal is successful

web\Application $catchAll

$catchAll public property The configuration specifying a controller action which should handle all user requests. This is mainly used when the application is in maintenance mode and needs to handle all incoming requests via a single action. The configuration is an array whose first element specifies the route of the action. The rest of the array elements (key-value pairs) specify the parameters to be bound to the action. For example, [ 'offline/notice', 'param1' => 'value1',

bootstrap\NavBar $renderInnerContainer

$renderInnerContainer public property Whether the navbar content should be included in an inner div container which by default adds left and right padding. Set this to false for a 100% width navbar. public boolean $renderInnerContainer = true

base\Model validateMultiple()

validateMultiple() public static method Validates multiple models. This method will validate every model. The models being validated may be of the same or different types. public static boolean validateMultiple ( $models, $attributeNames = null )$models array The models to be validated $attributeNames array List of attribute names that should be validated. If this parameter is empty, it means any attribute listed in the applicable validation rules should be validated. return boolean

swiftmailer\Message attach()

attach() public method Attaches existing file to the email message. public $this attach ( $fileName, array $options = [] )$fileName string Full file name $options array Options for embed file. Valid options are: fileName: name, which should be used to attach file. contentType: attached file MIME type. return $this Self reference.

swiftmailer\Message addHeader()

addHeader() public method (available since version 2.0.6) Adds custom header value to the message. Several invocations of this method with the same name will add multiple header values. public $this addHeader ( $name, $value )$name string Header name. $value string Header value. return $this Self reference.

web\Session getUseCustomStorage()

getUseCustomStorage() public method Returns a value indicating whether to use custom session storage. This method should be overridden to return true by child classes that implement custom session storage. To implement custom session storage, override these methods: openSession(), closeSession(), readSession(), writeSession(), destroySession() and gcSession(). public boolean getUseCustomStorage ( )return boolean Whether to use custom storage.