Skip to content

Commit 7226a83

Browse files
Merge branch '4.4' into 5.2
* 4.4: Switched to non-null defaults in exception constructors [Routing] fix conflict with param named class in attribute [Cache] fix setting items' metadata on commit()
2 parents 62ec878 + 5b5aefc commit 7226a83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Routing/DelegatingLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function load($resource, string $type = null)
6161
// - this handles the case and prevents the second fatal error
6262
// by triggering an exception beforehand.
6363

64-
throw new LoaderLoadException($resource, null, null, null, $type);
64+
throw new LoaderLoadException($resource, null, 0, null, $type);
6565
}
6666
$this->loading = true;
6767

0 commit comments

Comments
 (0)