Commit f7148c2d by Carsten Brandt

callback -> callable

this term is resolveable by the php docs when linking types in apidoc
parent 05e79d4f
...@@ -62,7 +62,7 @@ class AssetController extends Controller ...@@ -62,7 +62,7 @@ class AssetController extends Controller
*/ */
public $targets = []; public $targets = [];
/** /**
* @var string|callback JavaScript file compressor. * @var string|callable JavaScript file compressor.
* If a string, it is treated as shell command template, which should contain * If a string, it is treated as shell command template, which should contain
* placeholders {from} - source file name - and {to} - output file name. * placeholders {from} - source file name - and {to} - output file name.
* Otherwise, it is treated as PHP callback, which should perform the compression. * Otherwise, it is treated as PHP callback, which should perform the compression.
...@@ -72,7 +72,7 @@ class AssetController extends Controller ...@@ -72,7 +72,7 @@ class AssetController extends Controller
*/ */
public $jsCompressor = 'java -jar compiler.jar --js {from} --js_output_file {to}'; public $jsCompressor = 'java -jar compiler.jar --js {from} --js_output_file {to}';
/** /**
* @var string|callback CSS file compressor. * @var string|callable CSS file compressor.
* If a string, it is treated as shell command template, which should contain * If a string, it is treated as shell command template, which should contain
* placeholders {from} - source file name - and {to} - output file name. * placeholders {from} - source file name - and {to} - output file name.
* Otherwise, it is treated as PHP callback, which should perform the compression. * Otherwise, it is treated as PHP callback, which should perform the compression.
...@@ -88,6 +88,7 @@ class AssetController extends Controller ...@@ -88,6 +88,7 @@ class AssetController extends Controller
*/ */
private $_assetManager = []; private $_assetManager = [];
/** /**
* Returns the asset manager instance. * Returns the asset manager instance.
* @throws \yii\console\Exception on invalid configuration. * @throws \yii\console\Exception on invalid configuration.
......
...@@ -76,7 +76,7 @@ class DetailView extends Widget ...@@ -76,7 +76,7 @@ class DetailView extends Widget
*/ */
public $attributes; public $attributes;
/** /**
* @var string|callback the template used to render a single attribute. If a string, the token `{label}` * @var string|callable the template used to render a single attribute. If a string, the token `{label}`
* and `{value}` will be replaced with the label and the value of the corresponding attribute. * and `{value}` will be replaced with the label and the value of the corresponding attribute.
* If a callback (e.g. an anonymous function), the signature must be as follows: * If a callback (e.g. an anonymous function), the signature must be as follows:
* *
......
...@@ -25,7 +25,7 @@ class ListView extends BaseListView ...@@ -25,7 +25,7 @@ class ListView extends BaseListView
*/ */
public $itemOptions = []; public $itemOptions = [];
/** /**
* @var string|callback the name of the view for rendering each data item, or a callback (e.g. an anonymous function) * @var string|callable the name of the view for rendering each data item, or a callback (e.g. an anonymous function)
* for rendering each data item. If it specifies a view name, the following variables will * for rendering each data item. If it specifies a view name, the following variables will
* be available in the view: * be available in the view:
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment