Fix PHPCS errors.

This commit is contained in:
mark_story 2015-07-21 16:28:17 -04:00
parent 27e40f084d
commit e4b2428735
2 changed files with 1 additions and 2 deletions

View file

@ -318,7 +318,7 @@ class HashTest extends CakeTestCase {
)
)
),
'2' => array('2.1' => '2.1.1',)
'2' => array('2.1' => '2.1.1')
);
$result = Hash::maxDimensions($data);
$this->assertEquals($result, 5);

View file

@ -756,7 +756,6 @@ class Hash {
* number of dimensions in a mixed array.
*
* @param array $data Array to count dimensions on
* @param int $count counts current depth of this iteration
* @return int The maximum number of dimensions in $data
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/hash.html#Hash::maxDimensions
*/