Skip to content

Commit

Permalink
Merge pull request #76 from ans-group/add-phpunit-10-support
Browse files Browse the repository at this point in the history
Stop PHPUnit 10 being installed till we can fix deprecation errors in v9
  • Loading branch information
Gman98ish authored Feb 20, 2023
2 parents 96ff0d8 + c3cdb17 commit fb3bca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
"nesbot/carbon": "^1.26.3|^2.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.0",
"phpunit/phpunit": ">=5.0 <10",
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^8.0",
"mockery/mockery": "^1.0",
"illuminate/database": "^5.4|^6.0|^7.0|^8.0|^9.0|^10.0",
Expand Down
3 changes: 3 additions & 0 deletions src/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ class Status
/** @var string */
protected $message = '';

/** @var array */
protected $context = [];

/**
* Marks the status as a problem
*
Expand Down

0 comments on commit fb3bca4

Please sign in to comment.