-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dispatch events for migration execution (#114)
* Dispatch events for migration execution * drop symfony dispatcher from dev deps * Readme
- Loading branch information
Showing
9 changed files
with
180 additions
and
23 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,21 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace ShipMonk\Doctrine\Migration\Event; | ||
|
||
use ShipMonk\Doctrine\Migration\Migration; | ||
use ShipMonk\Doctrine\Migration\MigrationPhase; | ||
use Throwable; | ||
|
||
class MigrationExecutionFailedEvent | ||
{ | ||
|
||
public function __construct( | ||
public readonly Migration $migration, | ||
public readonly string $version, | ||
public readonly MigrationPhase $phase, | ||
public readonly Throwable $exception, | ||
) | ||
{ | ||
} | ||
|
||
} |
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,19 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace ShipMonk\Doctrine\Migration\Event; | ||
|
||
use ShipMonk\Doctrine\Migration\Migration; | ||
use ShipMonk\Doctrine\Migration\MigrationPhase; | ||
|
||
class MigrationExecutionStartedEvent | ||
{ | ||
|
||
public function __construct( | ||
public readonly Migration $migration, | ||
public readonly string $version, | ||
public readonly MigrationPhase $phase, | ||
) | ||
{ | ||
} | ||
|
||
} |
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,19 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace ShipMonk\Doctrine\Migration\Event; | ||
|
||
use ShipMonk\Doctrine\Migration\Migration; | ||
use ShipMonk\Doctrine\Migration\MigrationPhase; | ||
|
||
class MigrationExecutionSucceededEvent | ||
{ | ||
|
||
public function __construct( | ||
public readonly Migration $migration, | ||
public readonly string $version, | ||
public readonly MigrationPhase $phase, | ||
) | ||
{ | ||
} | ||
|
||
} |
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