Compare commits

..

No commits in common. "9a6d7a9284d0712c783bc2db00f1dd5f67289e74" and "9e8432999b1a52087478eec1736cb0c3d73e83cf" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ abstract class Formatter implements UsageInformationAble {
*/ */
public static function formatTimeH($seconds) { public static function formatTimeH($seconds) {
$hrs = floor($seconds / 3600); $hrs = floor($seconds / 3600);
$mins = intval(floor(($seconds / 60) % 60)); $mins = intval(($seconds / 60) % 60);
$sec = intval($seconds % 60); $sec = intval($seconds % 60);
$hrs = str_pad($hrs, 2, '0', STR_PAD_LEFT); $hrs = str_pad($hrs, 2, '0', STR_PAD_LEFT);

View File

@ -73,7 +73,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
public function setStyle($style) public function setStyle($style)
{ {
$this->style = (string)$style; $this->style = (string)$style;
$this->imageUrl = null; $this->url = null;
return $this; return $this;
} }
@ -91,7 +91,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
public function setSubStyle($subStyle) public function setSubStyle($subStyle)
{ {
$this->subStyle = (string)$subStyle; $this->subStyle = (string)$subStyle;
$this->imageUrl = null; $this->url = null;
return $this; return $this;
} }