We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 829ea12 commit 3113be9Copy full SHA for 3113be9
2 files changed
src/Package.php
@@ -4,9 +4,9 @@
4
5
class Package
6
{
7
- public static function load($source, $basePath = null, $options = null)
+ public static function load($source, $basePath = null)
8
9
- return Factory::datapackage($source, $basePath, $options);
+ return Factory::datapackage($source, $basePath);
10
}
11
12
public static function validate($source, $basePath = null)
src/Resources/BaseResource.php
@@ -37,7 +37,7 @@ public static function handlesDescriptor($descriptor)
37
return static::handlesProfile(Registry::getResourceValidationProfile($descriptor));
38
39
40
- public function read($options = null)
+ public function read()
41
42
$rows = [];
43
foreach ($this as $row) {
0 commit comments