We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b205c58 commit fc160c2Copy full SHA for fc160c2
src/GeoIPServiceProvider.php
@@ -2,6 +2,7 @@
2
3
namespace Torann\GeoIP;
4
5
+use Illuminate\Support\Str;
6
use Illuminate\Support\ServiceProvider;
7
8
class GeoIPServiceProvider extends ServiceProvider
@@ -74,6 +75,6 @@ public function registerGeoIpCommands()
74
75
*/
76
protected function isLumen()
77
{
- return str_contains($this->app->version(), 'Lumen') === true;
78
+ return Str::contains($this->app->version(), 'Lumen') === true;
79
}
80
0 commit comments