Skip to content
This repository was archived by the owner on Apr 26, 2020. It is now read-only.

Commit 1eb8a9c

Browse files
committed
Merge pull request #9 from ywfwj2008/fixed-makeArray
fixed makeArray()
2 parents c084e1b + 71a64a3 commit 1eb8a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpQuery/phpQuery.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ public static function getDOMDocument($source) {
998998
* @return unknown_type
999999
* @link http://docs.jquery.com/Utilities/jQuery.makeArray
10001000
*/
1001-
public static function makeArray($obj) {
1001+
public static function makeArray($object) {
10021002
$array = array();
10031003
if (is_object($object) && $object instanceof DOMNODELIST) {
10041004
foreach($object as $value)

0 commit comments

Comments
 (0)