Skip to content

Commit

Permalink
Merge pull request #1041 from GrahamCampbell/cs
Browse files Browse the repository at this point in the history
Applied StyleCI Fixes
  • Loading branch information
davedevelopment committed Feb 24, 2020
2 parents 053393b + a850632 commit 2dec89e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/Mockery/CallableSpyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class CallableSpyTest extends MockeryTestCase
/** @test */
public function it_verifies_the_closure_was_called()
{
$spy = spy(function() {});
$spy = spy(function () {});

$spy();

Expand All @@ -39,7 +39,7 @@ public function it_verifies_the_closure_was_called()
/** @test */
public function it_throws_if_the_callable_was_not_called_at_all()
{
$spy = spy(function() {});
$spy = spy(function () {});

$this->expectException(InvalidCountException::class);
$spy->shouldHaveBeenCalled();
Expand All @@ -48,7 +48,7 @@ public function it_throws_if_the_callable_was_not_called_at_all()
/** @test */
public function it_throws_if_there_were_no_arguments_but_we_expected_some()
{
$spy = spy(function() {});
$spy = spy(function () {});

$spy();

Expand All @@ -59,7 +59,7 @@ public function it_throws_if_there_were_no_arguments_but_we_expected_some()
/** @test */
public function it_throws_if_the_arguments_do_not_match()
{
$spy = spy(function() {});
$spy = spy(function () {});

$spy(123);

Expand Down

0 comments on commit 2dec89e

Please sign in to comment.