mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixed three @param data types
This commit is contained in:
parent
a7213b2e64
commit
d9882fcc08
1 changed files with 3 additions and 3 deletions
|
@ -191,9 +191,9 @@ class String {
|
|||
* - clean: A boolean or array with instructions for String::cleanInsert
|
||||
*
|
||||
* @param string $str A string containing variable placeholders
|
||||
* @param string $data A key => val array where each key stands for a placeholder variable name
|
||||
* @param array $data A key => val array where each key stands for a placeholder variable name
|
||||
* to be replaced with val
|
||||
* @param string $options An array of options, see description above
|
||||
* @param array $options An array of options, see description above
|
||||
* @return string
|
||||
*/
|
||||
public static function insert($str, $data, $options = array()) {
|
||||
|
@ -256,7 +256,7 @@ class String {
|
|||
* by String::insert().
|
||||
*
|
||||
* @param string $str
|
||||
* @param string $options
|
||||
* @param array $options
|
||||
* @return string
|
||||
* @see String::insert()
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue