diff options
Diffstat (limited to 'ext/spl/tests/bug73896.phpt')
-rw-r--r-- | ext/spl/tests/bug73896.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/tests/bug73896.phpt b/ext/spl/tests/bug73896.phpt index 08d8f1e6c8..18e54644a9 100644 --- a/ext/spl/tests/bug73896.phpt +++ b/ext/spl/tests/bug73896.phpt @@ -18,7 +18,7 @@ class teLoader { } protected function autoload($class) { - die("Protected autoload() called!\n"); + die("Protected autoload() called!\n"); } public function doSomething() { @@ -29,9 +29,9 @@ class teLoader { $teLoader = new teLoader(); try { - new teChild(); + new teChild(); } catch (Throwable $e) { - echo "Exception: ", $e->getMessage() , "\n"; + echo "Exception: ", $e->getMessage() , "\n"; } ?> --EXPECT-- |