Skip to content

Commit 8b156d5

Browse files
committedApr 8, 2021
composer fix-style
1 parent 3ce2d7d commit 8b156d5

File tree

284 files changed

+1235
-1673
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+1235
-1673
lines changed
 

‎config/config.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
return [
6-
76
// The prefix for routes
87
'prefix' => 'graphql',
98

@@ -37,7 +36,7 @@
3736
// 'mutation' => '\Rebing\GraphQL\GraphQLController@mutation'
3837
// ]
3938
//
40-
'controllers' => \Rebing\GraphQL\GraphQLController::class.'@query',
39+
'controllers' => \Rebing\GraphQL\GraphQLController::class . '@query',
4140

4241
// Any middleware for the graphql route group
4342
'middleware' => [],
@@ -178,7 +177,7 @@
178177
*/
179178
'graphiql' => [
180179
'prefix' => '/graphiql',
181-
'controller' => \Rebing\GraphQL\GraphQLController::class.'@graphiql',
180+
'controller' => \Rebing\GraphQL\GraphQLController::class . '@graphiql',
182181
'middleware' => [],
183182
'view' => 'graphql::graphiql',
184183
'display' => env('ENABLE_GRAPHIQL', true),

‎example/Auth/Authenticate.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
22

3-
declare(strict_types=1);
3+
declare(strict_types = 1);
44

55
use Auth;
66

77
trait Authenticate
88
{
99
public function authorize(array $args)
1010
{
11-
return ! Auth::guest();
11+
return !Auth::guest();
1212
}
1313
}

0 commit comments

Comments
 (0)
Please sign in to comment.