Completed
Push — master ( f92116...19d34a )
by Vincent
15s queued 12s
created
src/Builder/FormContractor.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -195,6 +195,7 @@
 block discarded – undo
195 195
 
196 196
     /**
197 197
      * @param string[] $classes
198
+     * @param string $type
198 199
      */
199 200
     private function isAnyInstanceOf(?string $type, array $classes): bool
200 201
     {
Please login to merge, or discard this patch.
src/Model/ModelManager.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,6 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     /**
62 62
      * NEXT_MAJOR: Make $propertyAccessor mandatory.
63
+     * @param \Symfony\Component\PropertyAccess\PropertyAccessor $propertyAccessor
63 64
      */
64 65
     public function __construct(ManagerRegistry $registry, ?PropertyAccessorInterface $propertyAccessor = null)
65 66
     {
@@ -661,7 +662,7 @@  discard block
 block discarded – undo
661 662
      *
662 663
      * @param string $property
663 664
      *
664
-     * @return mixed
665
+     * @return string
665 666
      */
666 667
     protected function camelize($property)
667 668
     {
Please login to merge, or discard this patch.
tests/Model/ModelManagerTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -944,6 +944,9 @@
 block discarded – undo
944 944
         $this->assertNull($this->modelManager->getNormalizedIdentifier(null));
945 945
     }
946 946
 
947
+    /**
948
+     * @param string $class
949
+     */
947 950
     private function getMetadata($class, $isVersioned)
948 951
     {
949 952
         $metadata = new ClassMetadata($class);
Please login to merge, or discard this patch.