示例#1
0
 public function testStaticCall()
 {
     $this->assertNotSame($this->guid->get(), Guid::make());
 }
示例#2
0
 public static function make(\Closure $function = null, $length = 15, $prepend_len = 4, $prepend = true, $parts = 4, $separator = '-', $case = 'mixed')
 {
     return parent::make($function, $length, $prepend_len, $prepend, $parts, $separator, $case) . '-' . time();
 }