Compare commits
No commits in common. "9a6d7a9284d0712c783bc2db00f1dd5f67289e74" and "9e8432999b1a52087478eec1736cb0c3d73e83cf" have entirely different histories.
9a6d7a9284
...
9e8432999b
@ -89,7 +89,7 @@ abstract class Formatter implements UsageInformationAble {
|
||||
*/
|
||||
public static function formatTimeH($seconds) {
|
||||
$hrs = floor($seconds / 3600);
|
||||
$mins = intval(floor(($seconds / 60) % 60));
|
||||
$mins = intval(($seconds / 60) % 60);
|
||||
$sec = intval($seconds % 60);
|
||||
|
||||
$hrs = str_pad($hrs, 2, '0', STR_PAD_LEFT);
|
||||
|
@ -73,7 +73,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
|
||||
public function setStyle($style)
|
||||
{
|
||||
$this->style = (string)$style;
|
||||
$this->imageUrl = null;
|
||||
$this->url = null;
|
||||
return $this;
|
||||
}
|
||||
|
||||
@ -91,7 +91,7 @@ class CheckBoxDesign implements Imageable, Styleable, SubStyleable
|
||||
public function setSubStyle($subStyle)
|
||||
{
|
||||
$this->subStyle = (string)$subStyle;
|
||||
$this->imageUrl = null;
|
||||
$this->url = null;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user