Skip to content

Commit

Permalink
Fix command path
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Sep 27, 2023
1 parent 8d5946e commit d530eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Add the unfinalize command to your `composer.json` so it runs on `composer updat
{
"scripts": {
"post-update-cmd": [
"@php artisan unfinalize:run"
"@php vendor/bin/unfinalize run"
]
}
}
Expand All @@ -83,7 +83,7 @@ If you would like final classes and methods to be marked with a `@final` doc blo
{
"scripts": {
"post-update-cmd": [
"@php artisan unfinalize:run --mark-final"
"@php vendor/bin/unfinalize run --mark-final"
]
}
}
Expand Down

0 comments on commit d530eab

Please sign in to comment.