Skip to content

Commit

Permalink
Fix code-style issues from Nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
lisachenko committed Sep 25, 2016
1 parent de403b6 commit 7c230c4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tests/Stub/FileWithParameters.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
<?php

namespace {
function testResolveDefaults($a=null, $b=false, $c=true) {}
function testResolveDefaults($a = null, $b = false, $c = true)
{
}

class TestParametersForRootNsClass {
function foo($a=null, $b=false, $c=true) {}
class TestParametersForRootNsClass
{
public function foo($a = null, $b = false, $c = true)
{
}
}
}

Expand Down

0 comments on commit 7c230c4

Please sign in to comment.