Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update for laravel 5.8
  • Loading branch information
Galin Denev committed May 6, 2019
1 parent 65a052a commit 92e546a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Tests/BaseTestCase.php
Expand Up @@ -8,7 +8,7 @@

abstract class BaseTestCase extends OrchestraTestCase
{
public function setUp()
public function setUp() : void
{
parent::setUp();

Expand Down
2 changes: 1 addition & 1 deletion Tests/MenuItemTest.php
Expand Up @@ -12,7 +12,7 @@ class MenuItemTest extends BaseTestCase
*/
private $menu;

public function setUp()
public function setUp() : void
{
parent::setUp();
$this->menu = app(Menu::class);
Expand Down
2 changes: 1 addition & 1 deletion Tests/MenuTest.php
Expand Up @@ -12,7 +12,7 @@ class MenuTest extends BaseTestCase
*/
private $menu;

public function setUp()
public function setUp() : void
{
parent::setUp();
$this->menu = app(Menu::class);
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -21,15 +21,15 @@
],
"require": {
"php": ">=7.1",
"illuminate/support": "5.7.*",
"illuminate/config": "5.7.*",
"illuminate/view": "5.7.*",
"laravelcollective/html": "5.7.*"
"illuminate/support": "5.8.*",
"illuminate/config": "5.8.*",
"illuminate/view": "5.8.*",
"laravelcollective/html": "5.8.*.*"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"mockery/mockery": "^1.0",
"orchestra/testbench": "3.7.*",
"orchestra/testbench": "3.8.*",
"friendsofphp/php-cs-fixer": "^2.10"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -22,7 +22,7 @@
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
Expand Down

0 comments on commit 92e546a

Please sign in to comment.