-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a trait to manage results of upgraders
Reset results after application of a patch to avoid the same messages multiples times
- Loading branch information
Showing
5 changed files
with
53 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
|
||
namespace Hhennes\ModulesManager\Upgrader; | ||
|
||
/** | ||
* Trait which allows to manage results upgrade process | ||
*/ | ||
trait UpgraderResultTrait | ||
{ | ||
protected array $errors = []; | ||
protected array $warning = []; | ||
protected array $success = []; | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getSuccess(): array | ||
{ | ||
return $this->success; | ||
} | ||
|
||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getErrors(): array | ||
{ | ||
return $this->errors; | ||
} | ||
|
||
/** | ||
* Reset the results of the upgrade | ||
* | ||
* @return void | ||
*/ | ||
public function resetResults(): void | ||
{ | ||
$this->success = []; | ||
$this->errors = []; | ||
$this->warning = []; | ||
} | ||
} |