Revision of release v1.3.2

This commit is contained in:
CyberPerspectives
2018-07-26 08:33:50 -04:00
committed by Ryan Prather
parent 8c38a6cdb9
commit 750094e3b5
3231 changed files with 133590 additions and 135073 deletions

View File

@ -5,13 +5,14 @@
* Author: Ryan Prather
* Created: Feb 23, 2018
*
* Copyright 2018: Cyber Perspectives, All rights reserved
* Copyright 2018: Cyber Perspectives, LLC, All rights reserved
* Released under the Apache v2.0 License
*
* See license.txt for details
*
* Change Log:
* - Feb 23, 2018 - File Created
* - Apr 29, 2018 - Added return for formatted date/time string for start and stop
*/
/**
@ -60,7 +61,7 @@ class DateTimeDiff
/**
* Getter function for _dtStart
*
*
* @return DateTime
*/
public function getStartClock()
@ -78,6 +79,16 @@ class DateTimeDiff
return $this->_dtStart->format("H:i:s");
}
/**
* Getter function for _dtStart as formatted date/time
*
* @return string
*/
public function getStartClockDateTime()
{
return $this->_dtStart->format(MYSQL_DT_FORMAT);
}
/**
* Getter function for _dtEnd
*
@ -98,6 +109,16 @@ class DateTimeDiff
return $this->_dtEnd->format("H:i:s");
}
/**
* Getter function for _dtEnd as formatted date/time
*
* @return string
*/
public function getEndClockDateTime()
{
return $this->_dtEnd->format(MYSQL_DT_FORMAT);
}
/**
* Function to stop the clock and set the ending time
*/