Completed
Push — master ( 027dff...010fb4 )
by David
11:19
created
src/Collector/Stack.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     }
231 231
 
232 232
     /**
233
-     * @return mixed
233
+     * @return string
234 234
      */
235 235
     public function getClientResponse()
236 236
     {
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
     }
239 239
 
240 240
     /**
241
-     * @param mixed $clientResponse
241
+     * @param string $clientResponse
242 242
      */
243 243
     public function setClientResponse($clientResponse)
244 244
     {
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,7 +296,7 @@
 block discarded – undo
296 296
     /**
297 297
      * Validate that the configuration fragment has the specified keys and none other.
298 298
      *
299
-     * @param array  $expected Fields that must exist
299
+     * @param string[]  $expected Fields that must exist
300 300
      * @param array  $actual   Actual configuration hashmap
301 301
      * @param string $authName Name of authentication method for error messages
302 302
      *
Please login to merge, or discard this patch.
tests/Functional/DiscoveredClientsTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@
 block discarded – undo
112 112
         $this->assertEquals($container->get('httplug.client.acme'), HttpAsyncClientDiscovery::find());
113 113
     }
114 114
 
115
+    /**
116
+     * @param boolean $debug
117
+     */
115 118
     private function getContainer($debug, $environment = 'test')
116 119
     {
117 120
         static::bootKernel(['debug' => $debug, 'environment' => $environment]);
Please login to merge, or discard this patch.
src/DependencyInjection/HttplugExtension.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -541,6 +541,9 @@
 block discarded – undo
541 541
         return $pluginServiceId;
542 542
     }
543 543
 
544
+    /**
545
+     * @param string $prefix
546
+     */
544 547
     private function configureVcrPlugin(ContainerBuilder $container, array $config, $prefix)
545 548
     {
546 549
         $recorder = $config['recorder'];
Please login to merge, or discard this patch.
src/Collector/Twig/HttpMessageMarkupExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     /**
14 14
      * {@inheritdoc}
15 15
      *
16
-     * @return array
16
+     * @return TwigFilter[]
17 17
      */
18 18
     public function getFilters()
19 19
     {
Please login to merge, or discard this patch.
src/Collector/Collector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     /**
163 163
      * Recursively count message in stack.
164 164
      *
165
-     * @return int
165
+     * @return double
166 166
      */
167 167
     private function countStackMessages(Stack $stack)
168 168
     {
Please login to merge, or discard this patch.