function _uniqueId($prefix = '')
{
    return Underscore::uniqueId($prefix);
}
Пример #2
0
 /**
  * @tags utilities
  */
 public function testUniqueId()
 {
     $a = _::uniqueId();
     $b = _::uniqueId();
     $this->variable($a)->isNotEqualTo($b);
 }