Skip to content

Commit 7382601

Browse files
committed
Patch framework
1 parent 2bb515b commit 7382601

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

app/Common.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* The goal of this file is to allow developers a location
55
* where they can overwrite core procedural functions and
66
* replace them with their own. This file is loaded during
7-
* the bootstrap process and is called during the frameworks
7+
* the bootstrap process and is called during the framework's
88
* execution.
99
*
1010
* This can be looked at as a `master helper` file that is

app/Views/errors/html/error_exception.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270

271271
<?php endif; ?>
272272

273-
<?php $headers = $request->getHeaders(); ?>
273+
<?php $headers = $request->headers(); ?>
274274
<?php if (! empty($headers)) : ?>
275275

276276
<h3>Headers</h3>
@@ -318,7 +318,7 @@
318318
</tr>
319319
</table>
320320

321-
<?php $headers = $response->getHeaders(); ?>
321+
<?php $headers = $response->headers(); ?>
322322
<?php if (! empty($headers)) : ?>
323323
<?php natsort($headers) ?>
324324

composer.lock

Lines changed: 14 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)