Skip to content

Commit

Permalink
Merge pull request #119 from BenjaminMedia/3.3.0
Browse files Browse the repository at this point in the history
Update composer.json
  • Loading branch information
186dk authored Mar 15, 2022
2 parents 43348b4 + 13858e1 commit 5b36dee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
},
"require": {
"php": ">7.1",
"php": ">=7.1",
"illuminate/support": "^5.6",
"bonnier/willow-mu-plugins": "^2.0",
"bordoni/phpass": "dev-main"
Expand Down
2 changes: 1 addition & 1 deletion src/Http/HttpRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static function get_instance()
{
if (!isset(self::$objInstance)) {
$obj = __CLASS__;
self:: $objInstance = new $obj();
self::$objInstance = new $obj();
}
return self::$objInstance;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Services/DocumentSearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static function get_instance()
{
if (!isset(self::$objInstance)) {
$obj = __CLASS__;
self:: $objInstance = new $obj();
self::$objInstance = new $obj();
}
return self::$objInstance;
}
Expand Down

0 comments on commit 5b36dee

Please sign in to comment.