Skip to content

Commit 947936d

Browse files
committed
Apply fixes from StyleCI
1 parent 9669df0 commit 947936d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/framework/src/Framework/Actions/SeedsPublicationFiles.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -188,17 +188,17 @@ protected function getTags(PublicationField $field): string
188188
'ullamcorper', 'ultrices', 'ultricies', 'urna',
189189
'ut', 'varius', 'vehicula', 'vel',
190190
'velit', 'venenatis', 'vestibulum', 'vitae',
191-
'vivamus', 'viverra', 'volutpat', 'vulputate'
191+
'vivamus', 'viverra', 'volutpat', 'vulputate',
192192
];
193193

194194
private function fakeSentence(int $words): string
195195
{
196196
$sentence = '';
197197
for ($i = 0; $i < $words; $i++) {
198-
$sentence .= $this->fakeWord() . ' ';
198+
$sentence .= $this->fakeWord().' ';
199199
}
200200

201-
return ucfirst(trim($sentence)) . '.';
201+
return ucfirst(trim($sentence)).'.';
202202
}
203203

204204
private function fakeWord(): string
@@ -208,6 +208,6 @@ private function fakeWord(): string
208208

209209
private function fakeUrl(): string
210210
{
211-
return 'https://example.com/' . $this->fakeWord();
211+
return 'https://example.com/'.$this->fakeWord();
212212
}
213213
}

0 commit comments

Comments
 (0)