Skip to content

Commit

Permalink
Bump: ⚡ updated to laravel version 6
Browse files Browse the repository at this point in the history
Signed-off-by: satz <sathish.thi@gmail.om>
  • Loading branch information
ssatz authored and satz committed Jan 10, 2020
1 parent 58243dc commit 962c7a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
"type": "library",
"require": {
"php": ">=7.1",
"illuminate/support": "^5.7",
"illuminate/support": "^5.7|^6.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"orchestra/testbench": "^3.7",
"phpunit/phpunit": "^8.4",
"orchestra/testbench": "3.8.*|4.*",
"mockery/mockery": "^1.2"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion tests/Integration/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

abstract class TestCase extends OrchestraTestCase
{
public function setUp()
public function setUp():void
{
parent::setUp();
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/JoloApiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JoloApiTest extends TestCase
/**
*
*/
public function setUp()
public function setUp():void
{

$this->joloApi = Mockery::mock(JoloApi::class);
Expand All @@ -39,7 +39,7 @@ public function setUp()
/**
*
*/
public function tearDown()
public function tearDown():void
{
Mockery::close();
}
Expand Down

0 comments on commit 962c7a6

Please sign in to comment.