Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
Default is_dev to true
Browse files Browse the repository at this point in the history
When upgrading, composer uses a mix of old and new
  • Loading branch information
fredemmott committed Oct 20, 2017
1 parent eecbc49 commit e91e24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Writer.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ final class Writer {
private ?string $root;
private bool $relativeAutoloadRoot = true;
private ?string $failureHandler;
private ?bool $isDev;
private bool $isDev = true;

public function setIsDev(bool $is_dev): this {
$this->isDev = $is_dev;
Expand Down

0 comments on commit e91e24c

Please sign in to comment.