Skip to content

Commit 8191874

Browse files
authored
Apply fixes from StyleCI (#33857)
1 parent 97de42a commit 8191874

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Illuminate/Queue/Listener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public function memoryExceeded($memoryLimit)
232232
*/
233233
public function stop()
234234
{
235-
die;
235+
exit;
236236
}
237237

238238
/**

src/Illuminate/Support/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ public function dd(...$args)
275275

276276
call_user_func_array([$this, 'dump'], $args);
277277

278-
die(1);
278+
exit(1);
279279
}
280280

281281
/**

src/Illuminate/Support/helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ function dd(...$args)
559559
(new Dumper)->dump($x);
560560
}
561561

562-
die(1);
562+
exit(1);
563563
}
564564
}
565565

0 commit comments

Comments
 (0)