-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ObjectType - make class line part of the cache key
- Loading branch information
1 parent
36649d3
commit be27584
Showing
3 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace Bug5639; | ||
|
||
if (\version_compare(\PHP_VERSION, '7.0', '<')) | ||
{ | ||
class Foo extends \Exception { | ||
function __toString(): string { | ||
$result = \sprintf("%s\n\nin %s on line %s", $this->message, $this->file, $this->line); | ||
return $result; | ||
} | ||
} | ||
} | ||
else | ||
{ | ||
class Foo extends \Error { | ||
function __toString(): string { | ||
$result = \sprintf("%s\n\nin %s on line %s", $this->message, $this->file, $this->line); | ||
return $result; | ||
} | ||
} | ||
} |