Skip to content

Commit a95fdbf

Browse files
authored
Make sure nullable arguments are strongly typed with null type (#163)
1 parent 64af99b commit a95fdbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UserInterface/Controller/JobController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public function list(Request $request): Response
136136
/**
137137
* View {@see JobExecution} details in a Twig template.
138138
*/
139-
public function view(string $job, string $id, null|string $path = null): Response
139+
public function view(string $job, string $id, string|null $path = null): Response
140140
{
141141
try {
142142
$execution = $this->jobExecutionStorage->retrieve($job, $id);

0 commit comments

Comments
 (0)