Skip to content

Commit

Permalink
Merge pull request #14322 from laravel/analysis-XZnABD
Browse files Browse the repository at this point in the history
Applied fixes from StyleCI
  • Loading branch information
taylorotwell authored Jul 15, 2016
2 parents 5f62e4f + a1feea2 commit 6f8c3ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/Bus/BusDispatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ class BusDispatcherTestBasicCommand

class BusDispatcherTestArgumentMapping implements Illuminate\Contracts\Bus\SelfHandling
{
public $flag, $emptyString;
public $flag;
public $emptyString;

public function __construct($flag, $emptyString)
{
Expand All @@ -149,7 +150,8 @@ public function handle()

class BusDispatcherTestSelfHandlingCommand implements Illuminate\Contracts\Bus\SelfHandling
{
public $firstName, $lastName;
public $firstName;
public $lastName;

public function __construct($firstName, $lastName)
{
Expand Down

0 comments on commit 6f8c3ca

Please sign in to comment.