Skip to content

Commit

Permalink
Fixed deprecated syntax from vendor package monolog-cascade. (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
viksts authored Feb 21, 2020
1 parent 39ff6a4 commit b515bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config/Loader/FileLoader/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private function isJson($string)
{
return (
!empty($string) &&
($string{0} === '[' || $string{0} === '{')
($string[0] === '[' || $string[0] === '{')
);
}

Expand Down

0 comments on commit b515bbc

Please sign in to comment.