Пример #1
0
 protected function doGetData(LoadingCriteriaInterface $loadingCriteria)
 {
     return $this->parseResourceFile($loadingCriteria->getResourcePath());
 }
Пример #2
0
 protected function doGetData(LoadingCriteriaInterface $loadingCriteria)
 {
     $resource = $loadingCriteria->getResourcePath();
     return require_once $resource;
 }
Пример #3
0
 protected function doGetData(LoadingCriteriaInterface $loadingCriteria)
 {
     $callable = [$loadingCriteria->getResourceClass(), $loadingCriteria->getResourceMethod()];
     return $callable();
 }