コード例 #1
0
ファイル: HardDeleteCommand.php プロジェクト: vend/doxport
 /**
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('hard-delete')->setDescription('(Hard) deletes a set of data from the database, but does not save or export the data');
 }
コード例 #2
0
ファイル: DeleteCommand.php プロジェクト: vend/doxport
 /**
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('delete')->setDescription('Deletes a set of data from the database, beginning with a specified type, but not including it (the data is exported)');
 }
コード例 #3
0
ファイル: ExportCommand.php プロジェクト: vend/doxport
 /**
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('export')->setDescription('Exports a set of data from the database, beginning with a specified type');
 }