Skip to content
This repository has been archived by the owner on Jun 12, 2022. It is now read-only.

Commit

Permalink
Quickfix for the default() return type.
Browse files Browse the repository at this point in the history
0.4.5.
  • Loading branch information
warrickbayman committed Mar 19, 2020
1 parent 1170fd8 commit a0d43f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.4.4] 19-03-2020
## [0.4.5] 19-03-2020
### Fixed
* Fixed a bug in the `deploy` command that was not running the `prune` command correctly when uring the `--prune` option.
* Fixed a bug in the `deploy` command that was not passing the server name to the `prune` command.
Expand Down
2 changes: 1 addition & 1 deletion bin/attache
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (file_exists(__DIR__.'/../vendor/autoload.php')) {
require __DIR__.'/../../../autoload.php';
}

$app = new \Symfony\Component\Console\Application('Attaché', '0.4.4');
$app = new \Symfony\Component\Console\Application('Attaché', '0.4.5');

$app->add(new \TPG\Attache\Console\InitCommand());
$app->add(new \TPG\Attache\Console\ServersListCommand());
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigurationProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public function servers(): Collection
return $this->servers;
}

public function default(): string
public function default(): ?string
{
return $this->default;
}
Expand Down

0 comments on commit a0d43f9

Please sign in to comment.