Fixed typos

This commit is contained in:
Pascal Borreli
2012-07-24 09:31:27 +00:00
parent f969776312
commit 8a34aa5077
43 changed files with 65 additions and 65 deletions

View File

@@ -60,7 +60,7 @@ class Error {
{
if (error_reporting() === 0) return;
// For a PHP error, we'll create an ErrorExcepetion and then feed that
// For a PHP error, we'll create an ErrorException and then feed that
// exception to the exception method, which will create a simple view
// of the exception details for the developer.
$exception = new \ErrorException($error, $code, 0, $file, $line);
@@ -80,7 +80,7 @@ class Error {
*/
public static function shutdown()
{
// If a fatal error occured that we have not handled yet, we will
// If a fatal error occurred that we have not handled yet, we will
// create an ErrorException and feed it to the exception handler,
// as it will not yet have been handled.
$error = error_get_last();