Skip to content

Commit 5c4bf89

Browse files
authored
Merge pull request #46 from DirectoryTree/analysis-YjO6lv
Apply fixes from StyleCI [ci skip] [skip ci]
2 parents 401b0b9 + 0efb0bd commit 5c4bf89

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/Container.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
class Container
1010
{
11-
use DispatchesEvents, HasLogger;
12-
11+
use DispatchesEvents;
12+
use HasLogger;
1313
/**
1414
* Current instance of the container.
1515
*

src/Models/ActiveDirectory/User.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
class 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.

src/Models/Model.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
/** @mixin Builder */
1818
abstract 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.

0 commit comments

Comments
 (0)