Skip to content

Commit 3b5ceb6

Browse files
committed
Update for case-sensitive machines
1 parent 7dac6a1 commit 3b5ceb6

File tree

336 files changed

+6
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

336 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public function get(string $name)
1616
{
1717
if (!isset($this->fields[$name])) {
1818
debug_print_backtrace();
19-
throw new NoSuchFieldException('Get to undefined field ' . $name);
19+
throw new NoSuchFieldException('Get to undefined Field ' . $name);
2020
}
2121
if ($this->fields[$name] instanceof _String) {
2222
return (string) $this->fields[$name];

0 commit comments

Comments
Β (0)