Skip to content
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

Bugfix: Remove Short Array Syntax and Fix (Minor) Recent Merge Issues #799

Merged
merged 2 commits into from
Sep 20, 2016
Merged
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
Next Next commit
removed accidental use of short array syntax
robfrawley committed Sep 19, 2016

Verified

This commit was signed with the committer’s verified signature.
commit 6bed8db04597b6e9dcba26da5e38c58fa48733c9
2 changes: 1 addition & 1 deletion .php_cs.dist
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ For the full copyright and license information, please view the LICENSE.md
file that was distributed with this source code.
EOF;

$headerConfig = [ 'header_comment' => [ 'header' => $headerString ] ];
$headerConfig = array( 'header_comment' => array( 'header' => $headerString ) );

$config = ConfigBridge::create();
$config->setRules(array_merge($config->getRules(), $headerConfig));