isDelete() public method

Determine whether the current schema action is a deleting action.
public isDelete ( ) : boolean
return boolean
 /**
  * @throws \InvalidArgumentException
  *
  * @return mixed
  */
 protected function getTemplateContents()
 {
     $parser = new NameParser($this->argument('name'));
     if ($parser->isCreate()) {
         return Stub::create('/migration/create.stub', ['class' => $this->getClass(), 'table' => $parser->getTableName(), 'fields' => $this->getSchemaParser()->render()]);
     } elseif ($parser->isAdd()) {
         return Stub::create('/migration/add.stub', ['class' => $this->getClass(), 'table' => $parser->getTableName(), 'fields_up' => $this->getSchemaParser()->up(), 'fields_down' => $this->getSchemaParser()->down()]);
     } elseif ($parser->isDelete()) {
         return Stub::create('/migration/delete.stub', ['class' => $this->getClass(), 'table' => $parser->getTableName(), 'fields_down' => $this->getSchemaParser()->up(), 'fields_up' => $this->getSchemaParser()->down()]);
     } elseif ($parser->isDrop()) {
         return Stub::create('/migration/drop.stub', ['class' => $this->getClass(), 'table' => $parser->getTableName(), 'fields' => $this->getSchemaParser()->render()]);
     }
     return Stub::create('/migration/plain.stub', ['class' => $this->getClass()]);
 }