Completed
Push — master ( 5de6c3...432bcd )
by David
05:36 queued 10s
created
src/Collector/Collector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
      *
181 181
      * @param Stack $stack
182 182
      *
183
-     * @return int
183
+     * @return double
184 184
      */
185 185
     private function countStackMessages(Stack $stack)
186 186
     {
Please login to merge, or discard this patch.
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/Collector/Twig/HttpMessageMarkupExtension.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     /**
11 11
      * {@inheritdoc}
12 12
      *
13
-     * @return array
13
+     * @return \Twig_SimpleFilter[]
14 14
      */
15 15
     public function getFilters()
16 16
     {
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.