File tree 5 files changed +10
-17
lines changed
5 files changed +10
-17
lines changed Original file line number Diff line number Diff line change 13
13
- name : Fix style
14
14
uses : docker://oskarstark/php-cs-fixer-ga
15
15
with :
16
- args : --config=.php_cs.dist --allow-risky=yes
16
+ args : --config=.php_cs.dist.php --allow-risky=yes
17
17
18
18
- name : Extract branch name
19
19
shell : bash
Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ phpunit.xml
10
10
psalm.xml
11
11
testbench.yaml
12
12
vendor
13
+ .php-cs-fixer.cache
14
+
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
$ finder = Symfony \Component \Finder \Finder::create ()
4
- ->notPath ('bootstrap/* ' )
5
- ->notPath ('storage/* ' )
6
- ->notPath ('resources/view/mail/* ' )
7
4
->in ([
8
5
__DIR__ . '/src ' ,
9
6
__DIR__ . '/tests ' ,
13
10
->ignoreDotFiles (true )
14
11
->ignoreVCS (true );
15
12
16
- return PhpCsFixer \Config:: create ( )
13
+ return ( new PhpCsFixer \Config () )
17
14
->setRules ([
18
15
'@PSR2 ' => true ,
19
16
'array_syntax ' => ['syntax ' => 'short ' ],
20
- 'ordered_imports ' => ['sortAlgorithm ' => 'alpha ' ],
17
+ 'ordered_imports ' => ['sort_algorithm ' => 'alpha ' ],
21
18
'no_unused_imports ' => true ,
22
19
'not_operator_with_successor_space ' => true ,
23
- 'trailing_comma_in_multiline_array ' => true ,
20
+ 'trailing_comma_in_multiline ' => true ,
24
21
'phpdoc_scalar ' => true ,
25
22
'unary_operator_spaces ' => true ,
26
23
'binary_operator_spaces ' => true ,
29
26
],
30
27
'phpdoc_single_line_var_spacing ' => true ,
31
28
'phpdoc_var_without_name ' => true ,
32
- 'class_attributes_separation ' => [
33
- 'elements ' => [
34
- 'method ' ,
35
- ],
36
- ],
37
29
'method_argument_space ' => [
38
30
'on_multiline ' => 'ensure_fully_multiline ' ,
39
31
'keep_multiple_spaces_after_comma ' => true ,
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class InvalidFeedItem extends Exception
11
11
12
12
public static function notFeedable ($ subject ): self
13
13
{
14
- return (new static ('Object doesn \' t implement `Spatie\Feed\Feedable` ' ))->withSubject ($ subject );
14
+ return (new static ('Object does not implement `Spatie\Feed\Feedable` ' ))->withSubject ($ subject );
15
15
}
16
16
17
17
public static function notAFeedItem ($ subject ): self
Original file line number Diff line number Diff line change @@ -95,11 +95,10 @@ protected function lastUpdated(): string
95
95
->sortBy (fn ($ feedItem ) => $ feedItem ->updated )
96
96
->last ()->updated ;
97
97
98
- if ($ this ->format === 'rss ' ) {
99
- return $ updatedAt ->toRssString ();
100
- }
101
98
102
- return $ updatedAt ->toRfc3339String ();
99
+ return $ this ->format === 'rss '
100
+ ? $ updatedAt ->toRssString ()
101
+ : $ updatedAt ->toRfc3339String ();
103
102
}
104
103
105
104
}
You can’t perform that action at this time.
0 commit comments