/** * Get root namespace. * * @return string */ public function getRootNamespace() { return parent::getRootNamespace() . parent::getConfigGeneratorClassPath($this->getPathConfigNode()); }
/** * Get array replacements. * * @return array */ public function getReplacements() { return array_merge(parent::getReplacements(), ['fillable' => $this->getFillable(), 'repository' => parent::getRootNamespace() . parent::getConfigGeneratorClassPath('interfaces') . '\\' . $this->getName() . 'Repository;', 'model' => isset($this->options['model']) ? $this->options['model'] : '']); }