bootstrap\Collapse run()

run() public method Renders the widget. public void run ( )

debug\panels\DbPanel getDetail()

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

sphinx\Schema $indexSchemas

$indexSchemas public read-only property The metadata for all indexes in the Sphinx. Each array element is an instance of yii\sphinx\IndexSchema or its child class. public yii\sphinx\IndexSchema[] getIndexSchemas ( $refresh = false )

web\Request getMethod()

getMethod() public method Returns the method of the current request (e.g. GET, POST, HEAD, PUT, PATCH, DELETE). public string getMethod ( )return string Request method, such as GET, POST, HEAD, PUT, PATCH, DELETE. The value returned is turned into upper case.

i18n\Formatter asCurrency()

asCurrency() public method Formats the value as a currency number. This function does not require the PHP intl extension to be installed to work, but it is highly recommended to install it to get good formatting results. public string asCurrency ( $value, $currency = null, $options = [], $textOptions = [] )$value mixed The value to be formatted. $currency string The 3-letter ISO 4217 currency code indicating the currency to use. If null, $currencyCode will be used. $options array Opt

debug\panels\TimelinePanel $duration

$duration public read-only property public float getDuration ( )

helpers\BaseHtml submitButton()

submitButton() public static method Generates a submit button tag. Be careful when naming form elements such as submit buttons. According to the jQuery documentation there are some reserved names that can cause conflicts, e.g. submit, length, or method. public static string submitButton ( $content = 'Submit', $options = [] )$content string The content enclosed within the button tag. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is is comin

console\controllers\FixtureController notifyNothingToUnload()

notifyNothingToUnload() public method Notifies user that there are no fixtures to unload according input conditions public void notifyNothingToUnload ( $foundFixtures, $except )$foundFixtures array Array of found fixtures $except array Array of names of fixtures that should not be loaded

web\Response $httpStatuses

$httpStatuses public static property List of HTTP status codes and the corresponding texts public static array $httpStatuses = [100 => 'Continue', 101 => 'Switching Protocols', 102 => 'Processing', 118 => 'Connection timed out', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 207 => 'Multi-Status', 208 => 'Already Reported', 210 => 'Content Differen

base\Security hkdf()

hkdf() public method Derives a key from the given input key using the standard HKDF algorithm. Implements HKDF specified in RFC 5869. Recommend use one of the SHA-2 hash algorithms: sha224, sha256, sha384 or sha512. public string hkdf ( $algo, $inputKey, $salt = null, $info = null, $length = 0 )$algo string A hash algorithm supported by hash_hmac(), e.g. 'SHA-256' $inputKey string The source key $salt string The random salt $info string Optional info to bind the derived key materia