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
17:47
created
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.
src/Config/Parser/AnnotationParser.php 1 patch
Doc Comments   +1 added lines, -7 removed lines patch added patch discarded remove patch
@@ -247,8 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Create a GraphQL Interface type configuration from annotations on properties.
249 249
      *
250
-     * @param string        $shortClassName
251
-     * @param GQL\Interface $interfaceAnnotation
250
+     * @param GQL\TypeInterface $interfaceAnnotation
252 251
      * @param array         $properties
253 252
      * @param array         $methods
254 253
      * @param string        $namespace
@@ -273,7 +272,6 @@  discard block
 block discarded – undo
273 272
     /**
274 273
      * Create a GraphQL Input type configuration from annotations on properties.
275 274
      *
276
-     * @param string    $shortClassName
277 275
      * @param GQL\Input $inputAnnotation
278 276
      * @param array     $properties
279 277
      * @param string    $namespace
@@ -294,7 +292,6 @@  discard block
 block discarded – undo
294 292
     /**
295 293
      * Get a Graphql scalar configuration from given scalar annotation.
296 294
      *
297
-     * @param string     $shortClassName
298 295
      * @param string     $className
299 296
      * @param GQL\Scalar $scalarAnnotation
300 297
      * @param array      $classAnnotations
@@ -323,7 +320,6 @@  discard block
 block discarded – undo
323 320
     /**
324 321
      * Get a Graphql Enum configuration from given enum annotation.
325 322
      *
326
-     * @param string   $shortClassName
327 323
      * @param GQL\Enum $enumAnnotation
328 324
      * @param array    $classAnnotations
329 325
      * @param array    $constants
@@ -536,8 +532,6 @@  discard block
 block discarded – undo
536 532
      * Return fields config from Provider methods.
537 533
      *
538 534
      * @param string $className
539
-     * @param array  $methods
540
-     * @param bool   $isMutation
541 535
      *
542 536
      * @return array
543 537
      */
Please login to merge, or discard this patch.