create() public method

Create the repository.
public create ( $repository, $model ) : integer
$repository
$model
return integer
 /**
  * @param $arguments
  * @param $options
  */
 protected function writeRepository($arguments, $options)
 {
     // Set repository.
     $repository = $arguments['repository'];
     // Set model.
     $model = $options['model'];
     // Create the repository.
     if ($this->creator->create($repository, $model)) {
         // Information message.
         $this->info("Successfully created the repository class");
     }
 }