Skip to content

Commit

Permalink
Merge 3dd5b0c into c056017
Browse files Browse the repository at this point in the history
  • Loading branch information
imanghafoori1 committed Sep 7, 2019
2 parents c056017 + 3dd5b0c commit ad9b6b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/MethodCallReactionTest.php
Expand Up @@ -2,9 +2,9 @@

namespace Imanghafoori\HeyManTests;

use Imanghafoori\HeyMan\Core\Chain;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\Facades\Route;
use Imanghafoori\HeyMan\Core\Chain;
use Imanghafoori\HeyMan\StartGuarding;
use Imanghafoori\HeyMan\Facades\HeyMan;

Expand Down Expand Up @@ -49,8 +49,8 @@ public function testCallingClosures()
Gate::shouldReceive('allows')->andReturn(false);

$t = '';
$cb = function () use(&$t) {
$t = $t .'sss';
$cb = function () use (&$t) {
$t = $t.'sss';
};

HeyMan::whenYouHitRouteName(['welcome', 'welcome.name'])
Expand Down

0 comments on commit ad9b6b2

Please sign in to comment.