Пример #1
0
 public function __construct(Reflector $module)
 {
     $makeFunctionDoc = function ($function) {
         return FunctionDocFactory::createFunctionDocFromReflector($function);
     };
     $this->module = $module;
     $this->functionDocs = Arrays::map($makeFunctionDoc, $this->getFunctions());
 }