Exemplo n.º 1
0
 /**
  * Prepare models
  *
  * @param State|State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Service')->addPart($this->config->getName() . 'Service')->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Service')->addPart($this->config->getName() . 'Service')->getSourcePath();
     $model->setName($name);
     $model->setPath($path);
     $state->addModel($model, 'service');
 }
 /**
  * Prepare models
  *
  * @param State|\Scaffold\State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Repository')->addPart($this->config->getName() . 'RepositoryTrait')->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Repository')->addPart($this->config->getName() . 'RepositoryTrait')->getSourcePath();
     $model->setName($name);
     $model->setPath($path);
     $state->addModel($model, 'repository-trait');
     $this->model = $model;
 }
Exemplo n.º 3
0
 /**
  * @param State|\Scaffold\State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule() . 'Test')->addPart('Entity')->addPart($this->config->getName() . 'Test')->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Entity')->addPart($this->config->getName())->getTestPath();
     $model->setName($name);
     $model->setPath($path);
     $state->addModel($model, 'entity-test');
     $this->model = $model;
 }
Exemplo n.º 4
0
 /**
  * Prepare models
  *
  * @param State|\Scaffold\State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Exception')->addPart($this->name)->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Exception')->addPart($this->name)->getSourcePath();
     $model->setName($name);
     $model->setPath($path);
     $state->addModel($model, $this->name);
     $this->model = $model;
 }
Exemplo n.º 5
0
 /**
  * Prepare models
  *
  * @param State|\Scaffold\State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Form')->addPart($this->config->getName() . 'FormFactory')->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Form')->addPart($this->config->getName() . 'FormFactory')->getSourcePath();
     $model->setName($name);
     $model->setPath($path);
     $config = array('service_manager' => array('factories' => array($model->getServiceName() => $name)));
     $model->setServiceConfig($config);
     $state->addModel($model, 'form-factory');
 }
Exemplo n.º 6
0
 /**
  * Prepare models
  *
  * @param State|State $state
  */
 public function prepare(State $state)
 {
     $filename = $this->config->getName() . 'Controller';
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Controller')->addPart($filename)->getNamespace();
     $path = $this->buildPath()->setModule($this->config->getModule())->addPart('Controller')->addPart($filename)->getSourcePath();
     $model->setName($name);
     $model->setPath($path);
     $config = array('controllers' => array('invokables' => array($model->getServiceName() => $model->getName())));
     $model->setServiceConfig($config);
     $state->addModel($model, 'controller');
 }
Exemplo n.º 7
0
 /**
  * Prepare models
  *
  * @param State|State $state
  */
 public function prepare(State $state)
 {
     $model = new Model();
     $name = $this->buildNamespace()->addPart($this->config->getModule())->addPart('Module')->getNamespace();
     $pathBuilder = $this->buildPath();
     if ($this->config->getBare()) {
         $pathBuilder->addPart('src');
         $pathBuilder->addPart($this->config->getModule());
     }
     $path = $pathBuilder->setModule($this->config->getModule())->addPart('Module')->getRawPath();
     $model->setName($name);
     $model->setPath($path);
     $state->addModel($model, 'module');
 }
Exemplo n.º 8
0
 public function testGetServiceNameForControllerWhenModuleSameName()
 {
     $model = new Model();
     $model->setName('User\\Controller\\UserController');
     $this->assertEquals('UserUser', $model->getServiceName());
 }
 /**
  * @param $name
  * @return Model
  */
 public function getModel($name)
 {
     $model = new Model();
     $model->setName($name);
     return $model;
 }