Skip to content

Commit

Permalink
Update dependencies (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez authored Dec 18, 2021
1 parent 71f92ce commit 994e3ff
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
"require": {
"php": "^7.4 | ^8.0",
"ext-json": "*",
"codeception/lib-innerbrowser": "^1.3",
"codeception/codeception": "^4.0"
"codeception/lib-innerbrowser": "^2.0",
"codeception/codeception": "^4.1"
},
"require-dev": {
"codeception/module-asserts": "^1.3",
"codeception/module-rest": "^1.2",
"codeception/module-asserts": "^2.0",
"codeception/module-rest": "^2.0",
"laravel/framework": "^6.0 | ^7.0 | ^8.0",
"vlucas/phpdotenv": "^3.6 | ^4.1 | ^5.2"
},
Expand Down
6 changes: 4 additions & 2 deletions src/Codeception/Module/Laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@
use Codeception\TestInterface;
use Codeception\Util\ReflectionHelper;
use Illuminate\Contracts\Config\Repository as Config;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Database\Connection;
use Illuminate\Database\DatabaseManager;
use Illuminate\Foundation\Application;
use Illuminate\Routing\Route;
use ReflectionException;
use Symfony\Component\BrowserKit\AbstractBrowser;
use Symfony\Component\Routing\CompiledRoute as SymfonyCompiledRoute;
use Throwable;

Expand Down Expand Up @@ -140,12 +142,12 @@ class Laravel extends Framework implements ActiveRecord, PartedModule
/**
* @var Application
*/
public $app;
public ApplicationContract $app;

/**
* @var LaravelConnector
*/
public $client;
public ?AbstractBrowser $client;

/**
* @var array
Expand Down

0 comments on commit 994e3ff

Please sign in to comment.