Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Pull Request — annotations (#407)
by Vincent
22:42 queued 11:44
created
src/Config/Parser/AnnotationParser.php 1 patch
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -251,8 +251,7 @@  discard block
 block discarded – undo
251 251
     /**
252 252
      * Create a GraphQL Interface type configuration from annotations on properties.
253 253
      *
254
-     * @param string        $shortClassName
255
-     * @param GQL\Interface $interfaceAnnotation
254
+     * @param GQL\TypeInterface $interfaceAnnotation
256 255
      * @param array         $properties
257 256
      * @param array         $methods
258 257
      * @param string        $namespace
@@ -277,7 +276,6 @@  discard block
 block discarded – undo
277 276
     /**
278 277
      * Create a GraphQL Input type configuration from annotations on properties.
279 278
      *
280
-     * @param string    $shortClassName
281 279
      * @param GQL\Input $inputAnnotation
282 280
      * @param array     $properties
283 281
      * @param string    $namespace
@@ -302,7 +300,6 @@  discard block
 block discarded – undo
302 300
     /**
303 301
      * Get a Graphql scalar configuration from given scalar annotation.
304 302
      *
305
-     * @param string     $shortClassName
306 303
      * @param string     $className
307 304
      * @param GQL\Scalar $scalarAnnotation
308 305
      * @param array      $classAnnotations
@@ -331,7 +328,6 @@  discard block
 block discarded – undo
331 328
     /**
332 329
      * Get a Graphql Enum configuration from given enum annotation.
333 330
      *
334
-     * @param string   $shortClassName
335 331
      * @param GQL\Enum $enumAnnotation
336 332
      * @param array    $classAnnotations
337 333
      * @param array    $constants
@@ -371,7 +367,6 @@  discard block
 block discarded – undo
371 367
     /**
372 368
      * Get a Graphql Union configuration from given union annotation.
373 369
      *
374
-     * @param string    $shortClassName
375 370
      * @param GQL\Union $unionAnnotation
376 371
      * @param array     $classAnnotations
377 372
      *
Please login to merge, or discard this patch.
src/DependencyInjection/OverblogGraphQLTypesExtension.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
      * @param string           $type
93 93
      * @param SplFileInfo[]    $files
94 94
      * @param ContainerBuilder $container
95
-     * @param array            $config
95
+     * @param array            $configs
96 96
      */
97 97
     private function preParseTypeConfigFiles($type, $files, ContainerBuilder $container, array $configs): void
98 98
     {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
      * @param $type
114 114
      * @param SplFileInfo[]    $files
115 115
      * @param ContainerBuilder $container
116
-     * @param array            $config
116
+     * @param array            $configs
117 117
      *
118 118
      * @return array
119 119
      */
Please login to merge, or discard this patch.
src/Error/InvalidArgumentError.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
     /** @var ConstraintViolationListInterface */
21 21
     private $errors = [];
22 22
 
23
+    /**
24
+     * @param string $name
25
+     */
23 26
     public function __construct($name, ConstraintViolationListInterface $errors, $message = '', $code = 0, \Exception $previous = null)
24 27
     {
25 28
         $this->name = $name;
Please login to merge, or discard this patch.
src/Error/InvalidArgumentsError.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-     * @return InvalidArgumentError[]
24
+     * @return InvalidArgumentError
25 25
      */
26 26
     public function getErrors()
27 27
     {
Please login to merge, or discard this patch.