Completed
Branch develop (d0d4c6)
by Marco
16:40
created
tests/Doctrine/Tests/OrmTestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     protected $secondLevelCacheDriverImpl = null;
53 53
 
54 54
     /**
55
-     * @param array $paths
55
+     * @param string[] $paths
56 56
      * @param mixed $alias
57 57
      *
58 58
      * @return \Doctrine\ORM\Mapping\Driver\AnnotationDriver
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Cache/Action.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
         return $this->name;
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $name
95
+     */
93 96
     public function setName($name)
94 97
     {
95 98
         $this->name = $name;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/Navigation/NavCountry.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
         return $this->name;
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $name
95
+     */
93 96
     public function setName($name)
94 97
     {
95 98
         $this->name = $name;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/Models/StockExchange/Market.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -90,6 +90,9 @@
 block discarded – undo
90 90
         return $this->name;
91 91
     }
92 92
 
93
+    /**
94
+     * @param string $name
95
+     */
93 96
     public function setName($name)
94 97
     {
95 98
         $this->name = $name;
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@
 block discarded – undo
51 51
         $this->_em = $this->_getTestEntityManager();
52 52
     }
53 53
 
54
+    /**
55
+     * @param string $dqlToBeTested
56
+     * @param string $sqlToBeConfirmed
57
+     */
54 58
     public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed)
55 59
     {
56 60
         try {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Query/DeleteSqlGenerationTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@
 block discarded – undo
51 51
         $this->_em = $this->_getTestEntityManager();
52 52
     }
53 53
 
54
+    /**
55
+     * @param string $dqlToBeTested
56
+     * @param string $sqlToBeConfirmed
57
+     */
54 58
     public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed)
55 59
     {
56 60
         try {
Please login to merge, or discard this patch.
lib/Doctrine/ORM/Mapping/ReflectionEmbeddedProperty.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -83,6 +83,7 @@
 block discarded – undo
83 83
 
84 84
     /**
85 85
      * {@inheritDoc}
86
+     * @param string $value
86 87
      */
87 88
     public function setValue($object, $value = null)
88 89
     {
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Mapping/ReflectionEmbeddedPropertyTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Instantiator\Instantiator;
6 6
 use Doctrine\ORM\Mapping\ReflectionEmbeddedProperty;
7
-use Doctrine\Tests\Models\Mapping\Entity;
8 7
 use ReflectionProperty;
9 8
 
10 9
 /**
Please login to merge, or discard this patch.
tests/Doctrine/Tests/ORM/Functional/AdvancedAssociationTest.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Doctrine\Tests\ORM\Functional;
4 4
 
5
-use Doctrine\ORM\Query;
6 5
 use Doctrine\Tests\Models\CMS\CmsUser;
7 6
 use Doctrine\Tests\OrmFunctionalTestCase;
8 7
 
Please login to merge, or discard this patch.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 
224 224
     /**
225 225
      *
226
-     * @return kateglo\application\helpers\collections\ArrayCollection
226
+     * @return ArrayCollection
227 227
      */
228 228
     public function getTypes()
229 229
     {
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 
321 321
 	/**
322 322
 	 *
323
-	 * @param kateglo\application\models\Lemma $lemma
323
+	 * @param Lemma $lemma
324 324
 	 * @return void
325 325
 	 */
326 326
 	public function addLemma(Lemma $lemma)
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
 
334 334
 	/**
335 335
 	 *
336
-	 * @param kateglo\application\models\Lemma $lemma
336
+	 * @param Lemma $lemma
337 337
 	 * @return void
338 338
 	 */
339 339
 	public function removeLEmma(Lemma $lemma)
Please login to merge, or discard this patch.