Skip to content

Commit 61c0c89

Browse files
driesvintsgithub-actions[bot]
authored andcommitted
Fix code styling
1 parent 67f9097 commit 61c0c89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Models/Paste.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ class Paste extends Model
2020

2121
public static function fromRequest(Request $request): self
2222
{
23-
return static::createNew(new static(), $request);
23+
return static::createNew(new static, $request);
2424
}
2525

2626
public static function fromFork(self $fork, Request $request): self
2727
{
28-
$paste = new static();
28+
$paste = new static;
2929
$paste->parent_id = $fork->id;
3030

3131
return static::createNew($paste, $request);

0 commit comments

Comments
 (0)