コード例 #1
0
 /**
  * Get root namespace.
  *
  * @return string
  */
 public function getRootNamespace()
 {
     return parent::getRootNamespace() . parent::getConfigGeneratorClassPath($this->getPathConfigNode());
 }
コード例 #2
0
 /**
  * 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'] : '']);
 }