Example #1
0
 /**
  * Parses random human inputted time into the specified format.
  *
  * @param  string $rawTime
  * @return string
  */
 public static function parse($rawTime)
 {
     $parser = new self();
     return $parser->parseRaw($rawTime);
 }