Skip to content

Commit 091e287

Browse files
committed
increment version
2 parents 5c488a0 + 6be5abd commit 091e287

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/Illuminate/Foundation/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
3535
*
3636
* @var string
3737
*/
38-
const VERSION = '9.16.0';
38+
const VERSION = '9.17.0';
3939

4040
/**
4141
* The base path for the Laravel installation.

src/Illuminate/Foundation/Bootstrap/HandleExceptions.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class HandleExceptions
3636
*/
3737
public function bootstrap(Application $app)
3838
{
39-
self::$reservedMemory = str_repeat('x', 10240);
39+
self::$reservedMemory = str_repeat('x', 32768);
4040

4141
static::$app = $app;
4242

@@ -183,9 +183,9 @@ protected function ensureNullLogDriverIsConfigured()
183183
*/
184184
public function handleException(Throwable $e)
185185
{
186-
try {
187-
self::$reservedMemory = null;
186+
self::$reservedMemory = null;
188187

188+
try {
189189
$this->getExceptionHandler()->report($e);
190190
} catch (Exception $e) {
191191
//
@@ -227,6 +227,8 @@ protected function renderHttpResponse(Throwable $e)
227227
*/
228228
public function handleShutdown()
229229
{
230+
self::$reservedMemory = null;
231+
230232
if (! is_null($error = error_get_last()) && $this->isFatal($error['type'])) {
231233
$this->handleException($this->fatalErrorFromPhpError($error, 0));
232234
}

src/Illuminate/Support/Testing/Fakes/MailFake.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,12 +351,12 @@ public function send($view, array $data = [], $callback = null)
351351

352352
$view->mailer($this->currentMailer);
353353

354-
$this->currentMailer = null;
355-
356354
if ($view instanceof ShouldQueue) {
357355
return $this->queue($view, $data);
358356
}
359357

358+
$this->currentMailer = null;
359+
360360
$this->mailables[] = $view;
361361
}
362362

0 commit comments

Comments
 (0)