Skip to content

Commit 5f55b3f

Browse files
committed
nitpicks
1 parent 67706c5 commit 5f55b3f

File tree

5 files changed

+10
-17
lines changed

5 files changed

+10
-17
lines changed

.github/workflows/php-cs-fixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Fix style
1414
uses: docker://oskarstark/php-cs-fixer-ga
1515
with:
16-
args: --config=.php_cs.dist --allow-risky=yes
16+
args: --config=.php_cs.dist.php --allow-risky=yes
1717

1818
- name: Extract branch name
1919
shell: bash

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ phpunit.xml
1010
psalm.xml
1111
testbench.yaml
1212
vendor
13+
.php-cs-fixer.cache
14+

.php_cs.dist .php_cs.dist.php

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
<?php
22

33
$finder = Symfony\Component\Finder\Finder::create()
4-
->notPath('bootstrap/*')
5-
->notPath('storage/*')
6-
->notPath('resources/view/mail/*')
74
->in([
85
__DIR__ . '/src',
96
__DIR__ . '/tests',
@@ -13,14 +10,14 @@
1310
->ignoreDotFiles(true)
1411
->ignoreVCS(true);
1512

16-
return PhpCsFixer\Config::create()
13+
return (new PhpCsFixer\Config())
1714
->setRules([
1815
'@PSR2' => true,
1916
'array_syntax' => ['syntax' => 'short'],
20-
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
17+
'ordered_imports' => ['sort_algorithm' => 'alpha'],
2118
'no_unused_imports' => true,
2219
'not_operator_with_successor_space' => true,
23-
'trailing_comma_in_multiline_array' => true,
20+
'trailing_comma_in_multiline' => true,
2421
'phpdoc_scalar' => true,
2522
'unary_operator_spaces' => true,
2623
'binary_operator_spaces' => true,
@@ -29,11 +26,6 @@
2926
],
3027
'phpdoc_single_line_var_spacing' => true,
3128
'phpdoc_var_without_name' => true,
32-
'class_attributes_separation' => [
33-
'elements' => [
34-
'method',
35-
],
36-
],
3729
'method_argument_space' => [
3830
'on_multiline' => 'ensure_fully_multiline',
3931
'keep_multiple_spaces_after_comma' => true,

src/Exceptions/InvalidFeedItem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class InvalidFeedItem extends Exception
1111

1212
public static function notFeedable($subject): self
1313
{
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);
1515
}
1616

1717
public static function notAFeedItem($subject): self

src/Feed.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,10 @@ protected function lastUpdated(): string
9595
->sortBy(fn ($feedItem) => $feedItem->updated)
9696
->last()->updated;
9797

98-
if ($this->format === 'rss') {
99-
return $updatedAt->toRssString();
100-
}
10198

102-
return $updatedAt->toRfc3339String();
99+
return $this->format === 'rss'
100+
? $updatedAt->toRssString()
101+
: $updatedAt->toRfc3339String();
103102
}
104103

105104
}

0 commit comments

Comments
 (0)