Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 60ec3ce

Browse files
committed
Fix typo in service provider
1 parent f51e3bd commit 60ec3ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GraphQLPlaygroundServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class GraphQLPlaygroundServiceProvider extends ServiceProvider
88
{
9-
const CONFIG_PATH = __DIR__ . '/../config/grapqhl-playground.php';
9+
const CONFIG_PATH = __DIR__ . '/../config/graphql-playground.php';
1010
const VIEW_PATH = __DIR__ . '/../resources/views';
1111

1212
/**
@@ -16,7 +16,7 @@ class GraphQLPlaygroundServiceProvider extends ServiceProvider
1616
*/
1717
public function boot()
1818
{
19-
$this->loadViewsFrom(self::VIEW_PATH, 'graphiql');
19+
$this->loadViewsFrom(self::VIEW_PATH, 'graphql-playground');
2020

2121
$this->publishes([
2222
self::CONFIG_PATH => config_path('graphql-playground.php'),

0 commit comments

Comments
 (0)