Skip to content

Commit

Permalink
Merge pull request overtrue#114 from overtrue/dependabot/composer/moc…
Browse files Browse the repository at this point in the history
…kery/mockery-1.2.3

Update mockery/mockery requirement from 1.2.2 to 1.2.3
  • Loading branch information
overtrue authored Aug 8, 2019
2 parents 97b40d8 + dc337cd commit 2faaefe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"require-dev": {
"laravel/laravel": "~5.5",
"phpunit/phpunit": "~7.5",
"mockery/mockery": "1.2.2"
"mockery/mockery": "1.2.3"
},
"license": "MIT",
"authors": [
Expand Down
4 changes: 3 additions & 1 deletion src/Events/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
*/
class Event
{
use Dispatchable, InteractsWithSockets, SerializesModels;
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;

public $causer;

Expand Down
3 changes: 2 additions & 1 deletion tests/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@

class User extends Model
{
use CanFollow, CanBeFollowed;
use CanFollow;
use CanBeFollowed;

protected $table = 'users';

Expand Down

0 comments on commit 2faaefe

Please sign in to comment.