Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -51,7 +51,7 @@ abstract class ErrorHandler
*/
public static function start($errorLevel = \E_WARNING)
{
if (!static::$stack) {
if (! static::$stack) {
set_error_handler([get_called_class(), 'addError'], $errorLevel);
}
@@ -63,7 +63,7 @@ abstract class ErrorHandler
*
* @param bool $throw Throw the ErrorException if any
* @return null|ErrorException
* @throws ErrorException If an error has been catched and $throw is true
* @throws ErrorException If an error has been caught and $throw is true
*/
public static function stop($throw = false)
{
@@ -72,7 +72,7 @@ abstract class ErrorHandler
if (static::$stack) {
$errorException = array_pop(static::$stack);
if (!static::$stack) {
if (! static::$stack) {
restore_error_handler();
}