function _provide($method)
{
    return Underscore::provide($method);
}
Пример #2
0
 /**
  * @tags utilities
  */
 public function testProvide()
 {
     $fn = _::provide('random');
     $this->variable($fn)->isCallable();
     $this->integer($fn(10))->isGreaterThanOrEqualTo(0)->isLessThanOrEqualTo(10);
 }