for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Doctrine\Migrations;
class MigratorConfig
{
/** @var bool */
private $dryRun = false;
private $timeAllQueries = false;
private $noMigrationException = false;
private $allOrNothing = false;
public function isDryRun() : bool
return $this->dryRun;
}
public function setDryRun(bool $dryRun) : self
$this->dryRun = $dryRun;
return $this;
public function getTimeAllQueries() : bool
return $this->timeAllQueries;
public function setTimeAllQueries(bool $timeAllQueries) : self
$this->timeAllQueries = $timeAllQueries;
public function getNoMigrationException() : bool
return $this->noMigrationException;
public function setNoMigrationException(bool $noMigrationException = false) : self
$this->noMigrationException = $noMigrationException;
public function isAllOrNothing() : bool
return $this->allOrNothing;
public function setAllOrNothing(bool $allOrNothing) : self
$this->allOrNothing = $allOrNothing;