Completed
Push — master ( 33443d...de9a4e )
by Sam
03:47
created
src/cli/Database/Base/InputQuery.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      * $obj  = $c->findPk(12, $con);
149 149
      * </code>
150 150
      *
151
-     * @param mixed $key Primary key to use for the query
151
+     * @param string $key Primary key to use for the query
152 152
      * @param ConnectionInterface $con an optional connection object
153 153
      *
154 154
      * @return ChildInput|array|mixed the result, formatted by the current formatter
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
     /**
511 511
      * Filter the query by a related \Jalle19\StatusManager\Database\Instance object
512 512
      *
513
-     * @param \Jalle19\StatusManager\Database\Instance|ObjectCollection $instance The related object(s) to use as filter
513
+     * @param Instance $instance The related object(s) to use as filter
514 514
      * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
515 515
      *
516 516
      * @throws \Propel\Runtime\Exception\PropelException
Please login to merge, or discard this patch.
src/cli/Database/Base/SubscriptionQuery.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
      *
425 425
      * @see       filterByUser()
426 426
      *
427
-     * @param     mixed $userId The value to use as filter.
427
+     * @param     integer|null $userId The value to use as filter.
428 428
      *              Use scalar values for equality.
429 429
      *              Use array values for in_array() equivalent.
430 430
      *              Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
      * $query->filterBySubscriptionId(array('min' => 12)); // WHERE subscription_id > 12
509 509
      * </code>
510 510
      *
511
-     * @param     mixed $subscriptionId The value to use as filter.
511
+     * @param     integer $subscriptionId The value to use as filter.
512 512
      *              Use scalar values for equality.
513 513
      *              Use array values for in_array() equivalent.
514 514
      *              Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
@@ -549,7 +549,7 @@  discard block
 block discarded – undo
549 549
      * $query->filterByStarted(array('max' => 'yesterday')); // WHERE started > '2011-03-13'
550 550
      * </code>
551 551
      *
552
-     * @param     mixed $started The value to use as filter.
552
+     * @param     integer $started The value to use as filter.
553 553
      *              Values can be integers (unix timestamps), DateTime objects, or strings.
554 554
      *              Empty strings are treated as NULL.
555 555
      *              Use scalar values for equality.
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
     /**
687 687
      * Filter the query by a related \Jalle19\StatusManager\Database\Instance object
688 688
      *
689
-     * @param \Jalle19\StatusManager\Database\Instance|ObjectCollection $instance The related object(s) to use as filter
689
+     * @param Instance $instance The related object(s) to use as filter
690 690
      * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
691 691
      *
692 692
      * @throws \Propel\Runtime\Exception\PropelException
@@ -763,7 +763,7 @@  discard block
 block discarded – undo
763 763
     /**
764 764
      * Filter the query by a related \Jalle19\StatusManager\Database\Input object
765 765
      *
766
-     * @param \Jalle19\StatusManager\Database\Input|ObjectCollection $input The related object(s) to use as filter
766
+     * @param Input $input The related object(s) to use as filter
767 767
      * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
768 768
      *
769 769
      * @throws \Propel\Runtime\Exception\PropelException
@@ -840,7 +840,7 @@  discard block
 block discarded – undo
840 840
     /**
841 841
      * Filter the query by a related \Jalle19\StatusManager\Database\User object
842 842
      *
843
-     * @param \Jalle19\StatusManager\Database\User|ObjectCollection $user The related object(s) to use as filter
843
+     * @param User $user The related object(s) to use as filter
844 844
      * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
845 845
      *
846 846
      * @throws \Propel\Runtime\Exception\PropelException
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
     /**
918 918
      * Filter the query by a related \Jalle19\StatusManager\Database\Channel object
919 919
      *
920
-     * @param \Jalle19\StatusManager\Database\Channel|ObjectCollection $channel The related object(s) to use as filter
920
+     * @param Channel $channel The related object(s) to use as filter
921 921
      * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
922 922
      *
923 923
      * @throws \Propel\Runtime\Exception\PropelException
Please login to merge, or discard this patch.
src/cli/PersistenceManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
 
252 252
 
253 253
 	/**
254
-	 * @param                  $instanceName
254
+	 * @param                  string $instanceName
255 255
 	 * @param ConnectionStatus $connectionStatus
256 256
 	 *
257 257
 	 * @return bool whether the connection exists in the database
Please login to merge, or discard this patch.