Skip to content

Commit 9bdbe75

Browse files
committed
WIP
1 parent 0b5eb65 commit 9bdbe75

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

src/Facades/Groq.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Groq extends Facade
88
{
99
protected static function getFacadeAccessor()
1010
{
11-
return 'Groq';
11+
return 'GroqLaravel';
1212
}
1313
}
1414

src/Groq.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace LucianoTonet\GroqLaravel;
44

5-
class Groq
5+
class Groq extends \LucianoTonet\GroqPHP\Groq
66
{
7-
// Your implementation of the Groq class here
7+
88
}
99

src/GroqServiceProvider.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
namespace LucianoTonet\GroqLaravel;
44

55
use Illuminate\Support\ServiceProvider;
6-
use LucianoTonet\GroqPHP\Groq;
76

87
class GroqServiceProvider extends ServiceProvider
98
{
109
public function register()
1110
{
12-
$this->app->bind('Groq', function () {
11+
$this->app->bind('GroqLaravel', function () {
1312
return new Groq();
1413
});
1514
}

0 commit comments

Comments
 (0)