Skip to content

Commit 5bb8825

Browse files
author
Christoph Rumpel
authored
Merge pull request #50 from christophrumpel/master
Support for Laravel 5.8
2 parents 2cb9067 + 81deece commit 5bb8825

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
"require": {
1515
"php": ">=7.1.0",
1616
"abraham/twitteroauth": "^0.9.2",
17-
"illuminate/notifications": "5.6.*|5.7.*",
18-
"illuminate/support": "5.7.*",
17+
"illuminate/notifications": "5.6.*|5.7.*|5.8.*",
18+
"illuminate/support": "5.7.*|5.8.*",
1919
"kylewm/brevity": "^0.2.9"
2020
},
2121

2222
"require-dev": {
2323
"mockery/mockery": "^1.0",
2424
"phpunit/phpunit": "^7.3",
25-
"orchestra/testbench": "~3.6|~3.7"
25+
"orchestra/testbench": "~3.6|~3.7|~3.8"
2626
},
2727
"autoload": {
2828
"psr-4": {

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
abstract class TestCase extends \Orchestra\Testbench\TestCase
88
{
9-
public function tearDown()
9+
public function tearDown() :void
1010
{
1111
parent::tearDown();
1212

tests/TwitterChannelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TwitterChannelTest extends TestCase
1818
/** @var \NotificationChannels\Twitter\TwitterChannel */
1919
protected $channel;
2020

21-
public function setUp()
21+
public function setUp() :void
2222
{
2323
parent::setUp();
2424
$this->twitter = Mockery::mock(TwitterOAuth::class);

tests/TwitterDirectMessageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class TwitterDirectMessageTest extends TestCase
1616

1717
protected $twitter;
1818

19-
public function setUp()
19+
public function setUp() :void
2020
{
2121
parent::setUp();
2222
$this->twitter = Mockery::mock(TwitterOAuth::class);

0 commit comments

Comments
 (0)