Skip to content

Commit 3113be9

Browse files
committed
remove unused $options param
1 parent 829ea12 commit 3113be9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/Package.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
class Package
66
{
7-
public static function load($source, $basePath = null, $options = null)
7+
public static function load($source, $basePath = null)
88
{
9-
return Factory::datapackage($source, $basePath, $options);
9+
return Factory::datapackage($source, $basePath);
1010
}
1111

1212
public static function validate($source, $basePath = null)

src/Resources/BaseResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static function handlesDescriptor($descriptor)
3737
return static::handlesProfile(Registry::getResourceValidationProfile($descriptor));
3838
}
3939

40-
public function read($options = null)
40+
public function read()
4141
{
4242
$rows = [];
4343
foreach ($this as $row) {

0 commit comments

Comments
 (0)