Skip to content

Commit 65f38b8

Browse files
committed
Fixing code styles
1 parent 429cb41 commit 65f38b8

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

app/Core/Providers/Session.php

-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ public function register()
4949
return $sessionManager;
5050
});
5151

52-
53-
5452
$this->app->singleton('session.store', function ($app) {
5553
// First, we will create the session manager which is responsible for the
5654
// creation of the various session drivers when they are needed by the

app/Domain/Notifications/Services/News.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public function getFeed()
9999
if (function_exists('simplexml_load_string')) {
100100
$responseXml = simplexml_load_string($response);
101101
} else {
102-
throw new \Exception("Simple XML extension is not installed");
102+
throw new \Exception('Simple XML extension is not installed');
103103
}
104104

105105
return $responseXml;

app/Domain/Projects/Services/Projects.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ public function notifyProjectUsers(Notification $notification): void
265265
$users = array_filter($users, function ($user) use ($notification) {
266266
return $user != $notification->authorId;
267267
}, ARRAY_FILTER_USE_BOTH);
268-
268+
269269
$emailMessage = $notification->message;
270270
if ($notification->url !== false) {
271271
$emailMessage .= " <a href='".$notification->url['url']."'>".$notification->url['text'].'</a>';

app/Domain/Sprints/Controllers/EditSprint.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function get($params)
4545
$sprint->endDate = $endDate;
4646
}
4747

48-
$allAssignedprojects = $this->projectService->getProjectsAssignedToUser(userId: session('userdata.id'), projectStatus: 'open', projectTypes: "project");
48+
$allAssignedprojects = $this->projectService->getProjectsAssignedToUser(userId: session('userdata.id'), projectStatus: 'open', projectTypes: 'project');
4949

5050
$this->tpl->assign('allAssignedprojects', $allAssignedprojects);
5151
$this->tpl->assign('sprint', $sprint);

0 commit comments

Comments
 (0)