8000 Trailing comma in function calls by mohamedziada · Pull Request #34234 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

Trailing comma in function calls #34234

New issue

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

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed current branch variable
  • Loading branch information
GrahamCampbell committed Sep 3, 2020
commit a00c5238155dccca1c19bc36e9091c5105fec05e
2 changes: 1 addition & 1 deletion bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ then
exit 1
fi

RELEASE_BRANCH="8.x"
RELEASE_BRANCH="master"
CURRENT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
VERSION=$1

Expand Down
2 changes: 1 addition & 1 deletion bin/split.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e
set -x

CURRENT_BRANCH="8.x"
CURRENT_BRANCH="master"

function split()
{
Expand Down
0