Example #1
0
 /**
  * Test that time() formats a timestamp to time.
  */
 public function testTime()
 {
     $time = mktime(16, 35, 0, 2, 26, 1988);
     $this->assertEquals('16:35:00', Format::time($time));
     $this->assertEquals('04:35PM', Format::time($time, '%I:%M%p'));
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public static function time($time, $format = '%H:%M:%S')
 {
     return parent::time($time, self::get('time', $format));
 }