File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 88
99class Container
1010{
11- use DispatchesEvents, HasLogger ;
12-
11+ use DispatchesEvents;
12+ use HasLogger;
1313 /**
1414 * Current instance of the container.
1515 *
Original file line number Diff line number Diff line change 99
1010class User extends Entry implements Authenticatable
1111{
12- use HasPassword,
13- HasPrimaryGroup,
14- CanAuthenticate;
12+ use HasPassword;
13+ use HasPrimaryGroup;
14+ use CanAuthenticate;
1515
1616 /**
1717 * The object classes of the LDAP model.
Original file line number Diff line number Diff line change 1717/** @mixin Builder */
1818abstract class Model implements ArrayAccess, JsonSerializable
1919{
20- use Concerns \HasEvents,
21- Concerns \HasScopes,
22- Concerns \HasAttributes,
23- Concerns \HasRelationships;
20+ use Concerns \HasEvents;
21+ use Concerns \HasScopes;
22+ use Concerns \HasAttributes;
23+ use Concerns \HasRelationships;
2424
2525 /**
2626 * Indicates if the model exists.
You can’t perform that action at this time.
0 commit comments