Completed
Pull Request — master (#339)
by
unknown
10:58 queued 03:11
created
src/Kdyby/Doctrine/Mapping/ResultSetMappingBuilder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -45,6 +45,9 @@
 block discarded – undo
45 45
 
46 46
 
47 47
 
48
+	/**
49
+	 * @param integer $defaultRenameMode
50
+	 */
48 51
 	public function __construct(EntityManager $em, $defaultRenameMode = Doctrine\ORM\Query\ResultSetMappingBuilder::COLUMN_RENAMING_INCREMENT)
49 52
 	{
50 53
 		parent::__construct($em, $defaultRenameMode);
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/exceptions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	/**
280 280
 	 * This is just a paranoia, hopes no one actually serializes exceptions.
281 281
 	 *
282
-	 * @return array
282
+	 * @return string[]
283 283
 	 */
284 284
 	public function __sleep()
285 285
 	{
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
 
321 321
 
322 322
 	/**
323
-	 * @return array
323
+	 * @return string[]
324 324
 	 */
325 325
 	public function __sleep()
326 326
 	{
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
 
362 362
 
363 363
 	/**
364
-	 * @return array
364
+	 * @return string[]
365 365
 	 */
366 366
 	public function __sleep()
367 367
 	{
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Diagnostics/EntityManagerUnitOfWorkSnapshotPanel.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
 	 */
42 42
 	private $unitOfWorkSnapshot;
43 43
 
44
+	/**
45
+	 * @param \Exception $exception
46
+	 */
44 47
 	public function markExceptionOwner(Doctrine\ORM\EntityManager $em, $exception)
45 48
 	{
46 49
 		if ($this->em !== $em) {
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/Diagnostics/Panel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -631,7 +631,7 @@
 block discarded – undo
631 631
 
632 632
 	/**
633 633
 	 * @param \Doctrine\Common\Annotations\AnnotationException $e
634
-	 * @return string|bool
634
+	 * @return false|string
635 635
 	 */
636 636
 	public static function highlightAnnotationLine(AnnotationException $e)
637 637
 	{
Please login to merge, or discard this patch.
src/Kdyby/Doctrine/DI/OrmExtension.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -433,6 +433,9 @@  discard block
 block discarded – undo
433 433
 
434 434
 
435 435
 
436
+	/**
437
+	 * @param boolean $isDefault
438
+	 */
436 439
 	protected function processSecondLevelCache($name, array $config, $isDefault)
437 440
 	{
438 441
 		if (!$config['enabled']) {
@@ -756,7 +759,7 @@  discard block
 block discarded – undo
756 759
 
757 760
 
758 761
 	/**
759
-	 * @param Nette\DI\ServiceDefinition $def
762
+	 * @param Nette\DI\Definitions\Definition $def
760 763
 	 * @return string[]
761 764
 	 */
762 765
 	protected function getServiceBoundManagers(Nette\DI\ServiceDefinition $def)
Please login to merge, or discard this patch.