Revert "PSR12 Linting"

This reverts commit 7e65e1d589.
This commit is contained in:
HDVinnie
2022-09-11 19:51:58 -04:00
parent 7e65e1d589
commit 2ca429c4ce
2014 changed files with 83255 additions and 83462 deletions
+8 -8
View File
@@ -45,30 +45,30 @@ class NewComment extends Notification
if ($this->comment->anon == 0) {
return [
'title' => 'New Torrent Comment Received',
'body' => $this->comment->user->username.' has left you a comment on Torrent '.$this->comment->torrent->name,
'url' => '/torrents/'.$this->comment->torrent->id,
'body' => $this->comment->user->username.' has left you a comment on Torrent '.$this->comment->torrent->name,
'url' => '/torrents/'.$this->comment->torrent->id,
];
}
return [
'title' => 'New Torrent Comment Received',
'body' => 'Anonymous has left you a comment on Torrent '.$this->comment->torrent->name,
'url' => '/torrents/'.$this->comment->torrent->id,
'body' => 'Anonymous has left you a comment on Torrent '.$this->comment->torrent->name,
'url' => '/torrents/'.$this->comment->torrent->id,
];
}
if ($this->comment->anon == 0) {
return [
'title' => 'New Request Comment Received',
'body' => $this->comment->user->username.' has left you a comment on Torrent Request '.$this->comment->request->name,
'url' => '/requests/'.$this->comment->request->id,
'body' => $this->comment->user->username.' has left you a comment on Torrent Request '.$this->comment->request->name,
'url' => '/requests/'.$this->comment->request->id,
];
}
return [
'title' => 'New Request Comment Received',
'body' => 'Anonymous has left you a comment on Torrent Request '.$this->comment->request->name,
'url' => '/requests/'.$this->comment->request->id,
'body' => 'Anonymous has left you a comment on Torrent Request '.$this->comment->request->name,
'url' => '/requests/'.$this->comment->request->id,
];
}
}