From d9882fcc08d778a958b537e9980f8fe7969bdccf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=BCrth?= Date: Sat, 6 Jul 2013 16:12:13 +0200 Subject: [PATCH] Fixed three @param data types --- lib/Cake/Utility/String.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Cake/Utility/String.php b/lib/Cake/Utility/String.php index 5b3092fe2..b3457cecb 100644 --- a/lib/Cake/Utility/String.php +++ b/lib/Cake/Utility/String.php @@ -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() */