Skip to content

Commit 9cbdeff

Browse files
authored
Merge pull request #33 from chelout/style-ci-update
Style ci update
2 parents 99cf16d + 8c0bcff commit 9cbdeff

File tree

3 files changed

+8
-19
lines changed

3 files changed

+8
-19
lines changed

.styleci.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,2 @@
1-
enabled:
2-
- concat_with_spaces
3-
- logical_not_operators_with_successor_space
4-
disabled:
5-
- align_double_arrow
6-
- concat_without_spaces
7-
- post_increment
8-
- new_with_braces
9-
finder:
10-
exclude:
11-
- "tests"
12-
name:
13-
- "*.php"
1+
php:
2+
preset: laravel

tests/Stubs/Post.php

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

1111
class Post extends Model
1212
{
13-
use HasMorphManyEvents,
14-
HasMorphToManyEvents;
13+
use HasMorphManyEvents;
14+
use HasMorphToManyEvents;
1515

1616
protected $guarded = [];
1717

tests/Stubs/User.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212

1313
class User extends Model
1414
{
15-
use HasOneEvents,
16-
HasManyEvents,
17-
HasMorphOneEvents,
18-
HasBelongsToManyEvents;
15+
use HasOneEvents;
16+
use HasManyEvents;
17+
use HasMorphOneEvents;
18+
use HasBelongsToManyEvents;
1919

2020
public static function setupTable()
2121
{

0 commit comments

Comments
 (0)