function Installer::setExecuteOperations
Should the operations (package install, update and removal) be executed on disk?
This is disabled implicitly when enabling dryRun
Return value
File
-
vendor/
composer/ composer/ src/ Composer/ Installer.php, line 1511
Class
- Installer
- @author Jordi Boggiano <j.boggiano@seld.be> @author Beau Simensen <beau@dflydev.com> @author Konstantin Kudryashov <ever.zet@gmail.com> @author Nils Adermann <naderman@naderman.de>
Namespace
ComposerCode
public function setExecuteOperations(bool $executeOperations = true) : self {
$this->executeOperations = $executeOperations;
return $this;
}