File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 66
77abstract class TestCase extends \Orchestra \Testbench \TestCase
88{
9- public function tearDown ()
9+ public function tearDown () : void
1010 {
1111 parent ::tearDown ();
1212
Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments