remove comment bloat.

This commit is contained in:
Taylor Otwell
2011-08-14 19:40:52 -05:00
parent 83ab60922b
commit d197a97aac
5 changed files with 0 additions and 106 deletions

View File

@@ -9,14 +9,6 @@ class Arr {
* also be accessed using JavaScript "dot" style notation. Retrieving items nested
* in multiple arrays is also supported.
*
* <code>
* // Returns "taylor"
* $item = Arr::get(array('name' => 'taylor'), 'name', $default);
*
* // Returns "taylor"
* $item = Arr::get(array('name' => array('is' => 'taylor')), 'name.is');
* </code>
*
* @param array $array
* @param string $key
* @param mixed $default