Skip to content

Commit c95422b

Browse files
Merge pull request #24 from unicodeveloper/support-laravel58
chore(identify): Bump Illuminate Support to 5.8
2 parents 5764156 + 0effb4c commit c95422b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": ">=7.1.3",
14-
"illuminate/support": "~5.6.0|~5.7.0",
14+
"illuminate/support": "~5.7.0|~5.8.0",
1515
"sinergi/browser-detector": "6.1.*"
1616
},
1717
"require-dev": {

tests/IdentifyServiceProviderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class IdentifyServiceProviderTest extends TestCase
1919
*/
2020
protected $provider;
2121

22-
protected function setUp()
22+
protected function setUp(): void
2323
{
2424
parent::setUp();
2525
$this->mockApp = m::mock('\Illuminate\Contracts\Foundation\Application');

tests/IdentifyTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class IdentifyTest extends TestCase
1515
*/
1616
protected $identify;
1717

18-
protected function setUp()
18+
protected function setUp() : void
1919
{
2020
parent::setUp();
2121
$this->identify = new Identify();

0 commit comments

Comments
 (0)