Skip to content

Commit 2faaefe

Browse files
authored
Merge pull request #114 from overtrue/dependabot/composer/mockery/mockery-1.2.3
Update mockery/mockery requirement from 1.2.2 to 1.2.3
2 parents 97b40d8 + dc337cd commit 2faaefe

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"require-dev": {
88
"laravel/laravel": "~5.5",
99
"phpunit/phpunit": "~7.5",
10-
"mockery/mockery": "1.2.2"
10+
"mockery/mockery": "1.2.3"
1111
},
1212
"license": "MIT",
1313
"authors": [

src/Events/Event.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
*/
2525
class Event
2626
{
27-
use Dispatchable, InteractsWithSockets, SerializesModels;
27+
use Dispatchable;
28+
use InteractsWithSockets;
29+
use SerializesModels;
2830

2931
public $causer;
3032

tests/User.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717

1818
class User extends Model
1919
{
20-
use CanFollow, CanBeFollowed;
20+
use CanFollow;
21+
use CanBeFollowed;
2122

2223
protected $table = 'users';
2324

0 commit comments

Comments
 (0)