* @site http://naghashyan.com * @year 2014-2015 * @package ngs.framework * @version 2.0.0 * * This file is part of the NGS package. * * @copyright Naghashyan Solutions LLC * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * */ namespace ngs\framework { use \ngs\framework\exceptions\NoAccessException; abstract class AbstractJsonLoad extends AbstractLoad { protected $params = array(); protected function setNestedLoadParams($namespace, $fileNs, $loadObj) { $this->params["inc"][$namespace] = $loadObj->getParams(); } public function getLoadType(){ return "json"; } } }