Skip to content

Commit

Permalink
Do not pass null for exception code
Browse files Browse the repository at this point in the history
  • Loading branch information
discordier committed Mar 2, 2022
1 parent b81451f commit ae412d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration/Loader/AbstractFileLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ private function doImport(
throw $e;
}

throw new LoaderLoadException(var_export($resource, true), $sourceResource, null, $e, $type);
throw new LoaderLoadException(var_export($resource, true), $sourceResource, 0, $e, $type);
}
}
}
Expand Down

0 comments on commit ae412d8

Please sign in to comment.