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 — master (#58)
by Renato
13:40
created
Tests/DIContainerMockTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 
14 14
 trait DIContainerMockTrait
15 15
 {
16
+    /**
17
+     * @return null|\Symfony\Component\DependencyInjection\ContainerInterface
18
+     */
16 19
     private function getDIContainerMock(array $services = [], array $parameters = [])
17 20
     {
18 21
         $container = $this->getMock('Symfony\\Component\\DependencyInjection\\Container', ['get', 'getParameter', 'has']);
Please login to merge, or discard this patch.
Config/TypeWithOutputFieldsDefinition.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
         self::$fieldBuilderClassMap[$name] = $fieldBuilderClass;
52 52
     }
53 53
 
54
+    /**
55
+     * @param string $type
56
+     */
54 57
     protected static function checkBuilderClass($builderClass, $type)
55 58
     {
56 59
         $interface = 'Overblog\\GraphQLBundle\\Definition\\Builder\\MappingInterface';
@@ -113,6 +116,9 @@  discard block
 block discarded – undo
113 116
         }
114 117
     }
115 118
 
119
+    /**
120
+     * @param string $name
121
+     */
116 122
     protected function outputFieldsSelection($name, $withAccess = false)
117 123
     {
118 124
         $builder = new TreeBuilder();
Please login to merge, or discard this patch.
DependencyInjection/TypesConfiguration.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -152,6 +152,10 @@
 block discarded – undo
152 152
             ->end();
153 153
     }
154 154
 
155
+    /**
156
+     * @param string $typeToTreat
157
+     * @param string $definitionBuilderClass
158
+     */
155 159
     private function relayNormalizer($typeToTreat, $definitionBuilderClass)
156 160
     {
157 161
         return function ($types) use ($typeToTreat, $definitionBuilderClass) {
Please login to merge, or discard this patch.