예제 #1
0
파일: DateTest.php 프로젝트: fuelphp/common
 /**
  * @covers Fuel\Common\Date::defaultTimezone
  * @expectedException  \Exception
  * @group Common
  */
 public function testDefaultTimezoneException()
 {
     Date::defaultTimezone('Illegal/Timezone');
 }
예제 #2
0
파일: Date.php 프로젝트: fuelphp/legacy
 /**
  * Sets the default timezone, the current display timezone of the application
  *
  * @return  DateTimeZone
  */
 public static function defaultTimezone($timezone = null)
 {
     return CommonDate::defaultTimezone($timezone);
 }