PluginProbe
Stream – Activity Log & Audit Trail / 3.4.2
Stream – Activity Log & Audit Trail v3.4.2
4.4.0 4.3.0 4.2.2 4.2.1 trunk 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.1 3.1.1 3.10.0 3.2.0 3.2.1 3.2.2 3.2.3 All 50 releases
← All changes | includes/lib/Carbon.php +3 -2 3.2.23.4.2 View file →
@@ -674,14 +674,15 @@
674 674 *
675 675 * @param integer $hour
676 676 * @param integer $minute
677 677 * @param integer $second
678 + * @param integer $microseconds
678 679 *
679 680 * @return static
680 681 */
681 - public function setTime($hour, $minute, $second = 0)
682 + public function setTime($hour, $minute, $second = 0, $microseconds = 0 )
682 683 {
683 - parent::setTime($hour, $minute, $second);
684 + parent::setTime($hour, $minute, $second, $microseconds );
684 685
685 686 return $this;
686 687 }
687 688