Skip to content

Commit

Permalink
Fixes some inconsistency.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Nov 11, 2014
1 parent 2bf88fb commit 9be0564
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Testbench/Traits/ApplicationTrait.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?php namespace Orchestra\Testbench\Traits;

use Illuminate\Http\Request;
use Illuminate\Config\FileLoader;
use Illuminate\Config\Repository;
use Illuminate\Filesystem\Filesystem;
Expand Down
4 changes: 2 additions & 2 deletions src/Testbench/Traits/ClientTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function callSecure($method, $uri, $parameters = [], $cookies = [], $file
{
$uri = 'https://localhost/'.ltrim($uri, '/');

return $this->call($method, $uri, $parameters, $files, $server, $content);
return $this->call($method, $uri, $parameters, $cookies, $files, $server, $content);
}

/**
Expand Down Expand Up @@ -86,7 +86,7 @@ public function route($method, $name, $routeParameters = [], $parameters = [], $
{
$uri = $this->app['url']->route($name, $routeParameters);

return $this->call($method, $uri, $parameters, $cookies, $files, $server, $content, $changeHistory);
return $this->call($method, $uri, $parameters, $cookies, $files, $server, $content);
}

/**
Expand Down
Empty file modified src/fixture/config/queue.php
100755 → 100644
Empty file.

0 comments on commit 9be0564

Please sign in to comment.