Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Prevent array type being picked up as missing class #25

Merged
merged 1 commit into from
Feb 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Fusonic/Linq/Linq.php
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ private function getLast($func, $throw)
* @param callable $keySelector a func that returns the array-key for each element.
* @param callable $valueSelector a func that returns the array-value for each element.
*
* @return Array An array with all values.
* @return array An array with all values.
*/
public function toArray(callable $keySelector = null, callable $valueSelector = null)
{
Expand Down Expand Up @@ -709,4 +709,4 @@ public function getIterator()
{
return $this->iterator;
}
}
}