We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line 33 in GeneratesDocumentationSidebar.php
$order = array_search($slug, $orderArray) ?: 999;
thinks that the first array key which is 0 is false and assigns it 999.
Fixed using
$order = ($position = array_search($slug, $orderArray)) === null ? 999 : $position;
The text was updated successfully, but these errors were encountered:
Fix #232
8a5f9d7
Merge pull request #232 from hydephp/merge-route-facades
290fefa
Remove Facades\Route.php hydephp/develop@0493cec
Successfully merging a pull request may close this issue.
Line 33 in GeneratesDocumentationSidebar.php
thinks that the first array key which is 0 is false and assigns it 999.
Fixed using
The text was updated successfully, but these errors were encountered: