Completed
Pull Request — master (#1188)
by Adam
01:45
created
Mapping/EntityListenerServiceResolver.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * @param string $className
11 11
      * @param string $serviceId
12
+     * @return void
12 13
      */
13 14
     public function registerService($className, $serviceId);
14 15
 }
Please login to merge, or discard this patch.
DataCollector/DoctrineDataCollector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -233,6 +233,9 @@
 block discarded – undo
233 233
         return $this->groupedQueries;
234 234
     }
235 235
 
236
+    /**
237
+     * @param integer $totalExecutionTimeMS
238
+     */
236 239
     private function executionTimePercentage($executionTimeMS, $totalExecutionTimeMS)
237 240
     {
238 241
         if ($totalExecutionTimeMS === 0.0 || $totalExecutionTimeMS === 0) {
Please login to merge, or discard this patch.
ConnectionFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * Create a connection by name.
40 40
      *
41 41
      * @param mixed[]         $params
42
-     * @param string[]|Type[] $mappingTypes
42
+     * @param integer[] $mappingTypes
43 43
      *
44 44
      * @return Connection
45 45
      */
Please login to merge, or discard this patch.
DependencyInjection/DoctrineExtension.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -682,6 +682,7 @@  discard block
 block discarded – undo
682 682
 
683 683
     /**
684 684
      * {@inheritDoc}
685
+     * @param string $name
685 686
      */
686 687
     protected function getObjectManagerElementName($name) : string
687 688
     {
@@ -711,6 +712,7 @@  discard block
 block discarded – undo
711 712
 
712 713
     /**
713 714
      * {@inheritDoc}
715
+     * @param string $cacheName
714 716
      */
715 717
     protected function loadCacheDriver($cacheName, $objectManagerName, array $cacheDriver, ContainerBuilder $container) : string
716 718
     {
Please login to merge, or discard this patch.
Tests/DependencyInjection/DoctrineExtensionTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -810,6 +810,9 @@
 block discarded – undo
810 810
         $this->assertFalse($container->hasDefinition('doctrine.dbal.bar_shard_manager'));
811 811
     }
812 812
 
813
+    /**
814
+     * @param string $vendor
815
+     */
813 816
     private function getContainer($bundles = 'YamlBundle', $vendor = null) : ContainerBuilder
814 817
     {
815 818
         $bundles = (array) $bundles;
Please login to merge, or discard this patch.