Skip to content

Commit a8a8e6f

Browse files
AzGasimgithub-actions[bot]
authored andcommitted
Fix styling
1 parent aca840b commit a8a8e6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/draft/src/Models/Draft.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ public function handleSchedulingDates(): void
158158
/** @var DraftTranslation|null $translation */
159159
$translation = $this->translate($locale);
160160

161-
if (!$translation) {
161+
if (! $translation) {
162162
return;
163163
}
164164

165165
switch ($translation->status) {
166166
case 'scheduled':
167-
if (!$translation->to_publish_at) {
167+
if (! $translation->to_publish_at) {
168168
$translation->to_publish_at = now();
169169
}
170170
$translation->published_at = null;

0 commit comments

Comments
 (0)