Completed
Pull Request — feature-laravel-5.4 (#31)
by Kirill
09:26 queued 05:53
created
app/GraphQL/Queries/Support/QueryLimit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Queries\Support;
12 12
 
Please login to merge, or discard this patch.
app/GraphQL/Serializers/UserSerializer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Serializers;
12 12
 
Please login to merge, or discard this patch.
app/GraphQL/Serializers/AbstractSerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Serializers;
12 12
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public static function map(): \Closure
45 45
     {
46
-        return function (Model $model) {
46
+        return function(Model $model) {
47 47
             return static::serialize($model);
48 48
         };
49 49
     }
Please login to merge, or discard this patch.
app/GraphQL/Kernel/AbstractEnum.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace App\GraphQL\Kernel;
11 11
 
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public static function toGraphQL(): EnumType
29 29
     {
30
-        if (! array_key_exists(static::class, self::$enums)) {
30
+        if (!array_key_exists(static::class, self::$enums)) {
31 31
             $shortName = (new \ReflectionClass(static::class))->getShortName();
32 32
 
33 33
             self::$enums[static::class] = new EnumType([
34 34
                 'name'        => $shortName,
35
-                'description' => $shortName . ' type',
35
+                'description' => $shortName.' type',
36 36
                 'values'      => self::getGraphQLValues($shortName),
37 37
             ]);
38 38
         }
Please login to merge, or discard this patch.
app/GraphQL/Kernel/EnumInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * For the full copyright and license information, please view the LICENSE
6 6
  * file that was distributed with this source code.
7 7
  */
8
-declare(strict_types=1);
8
+declare(strict_types = 1);
9 9
 
10 10
 namespace App\GraphQL\Kernel;
11 11
 
Please login to merge, or discard this patch.
app/GraphQL/Types/TagType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Types;
12 12
 
Please login to merge, or discard this patch.
app/GraphQL/Types/AbstractType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Types;
12 12
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public static function getName(): string
30 30
     {
31
-        if (! isset(self::$names[static::class])) {
31
+        if (!isset(self::$names[static::class])) {
32 32
             $reflection = new \ReflectionClass(static::class);
33 33
 
34 34
             self::$names[static::class] = Str::replaceLast('Type', '', $reflection->getShortName());
Please login to merge, or discard this patch.
app/GraphQL/Mutations/ArticleUpdate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\GraphQL\Mutations;
12 12
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     /**
42 42
      * @return ObjectType|null
43 43
      */
44
-    public function type(): ?ObjectType
44
+    public function type(): ? ObjectType
45 45
     {
46 46
         return \GraphQL::type(ArticleType::getName());
47 47
     }
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
  * For the full copyright and license information, please view the LICENSE
7 7
  * file that was distributed with this source code.
8 8
  */
9
-declare(strict_types=1);
9
+declare(strict_types = 1);
10 10
 
11 11
 namespace App\Exceptions;
12 12
 
Please login to merge, or discard this patch.