コード例 #1
0
ファイル: GuidTest.php プロジェクト: laravel-commode/common
 public function testStaticCall()
 {
     $this->assertNotSame($this->guid->get(), Guid::make());
 }
コード例 #2
0
ファイル: AggregateHash.php プロジェクト: gxela/leback-guid
 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();
 }