Skip to content

Commit

Permalink
Allow for Symfony 5
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Nov 25, 2019
1 parent 79b3000 commit 49982fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"illuminate/contracts": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"psy/psysh": "^0.9.0",
"symfony/var-dumper": "^4.0"
"symfony/var-dumper": "^4.0|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
Expand Down
4 changes: 3 additions & 1 deletion src/Console/TinkerCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class TinkerCommand extends Command
/**
* Execute the console command.
*
* @return void
* @return int
*/
public function handle()
{
Expand Down Expand Up @@ -69,6 +69,8 @@ public function handle()
} finally {
$loader->unregister();
}

return 0;
}

/**
Expand Down

0 comments on commit 49982fd

Please sign in to comment.