createRepository() public method

Create the mapping repository data store.
public createRepository ( )
コード例 #1
0
ファイル: Install.php プロジェクト: sleimanx2/plastic
 /**
  * Execute the console command.
  */
 public function handle()
 {
     $this->repository->setSource($this->option('database'));
     $this->repository->createRepository();
     $this->info('Mapping table created successfully');
 }