We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97b40d8 + dc337cd commit 2faaefeCopy full SHA for 2faaefe
composer.json
@@ -7,7 +7,7 @@
7
"require-dev": {
8
"laravel/laravel": "~5.5",
9
"phpunit/phpunit": "~7.5",
10
- "mockery/mockery": "1.2.2"
+ "mockery/mockery": "1.2.3"
11
},
12
"license": "MIT",
13
"authors": [
src/Events/Event.php
@@ -24,7 +24,9 @@
24
*/
25
class Event
26
{
27
- use Dispatchable, InteractsWithSockets, SerializesModels;
+ use Dispatchable;
28
+ use InteractsWithSockets;
29
+ use SerializesModels;
30
31
public $causer;
32
tests/User.php
@@ -17,7 +17,8 @@
17
18
class User extends Model
19
20
- use CanFollow, CanBeFollowed;
+ use CanFollow;
21
+ use CanBeFollowed;
22
23
protected $table = 'users';
0 commit comments