Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Bug #117: Raise PHPStan level to `5` (@terabytesoftw)
- Bug #118: Add `phpdoc_param_order` rule and update namespace references in `rector.php` (@terabytesoftw)
- Enh #119: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw)
- Bug #120: Clean up event documentation in `FoxyEvents` class (@terabytesoftw)

## 0.1.2 June 10, 2024

Expand Down
16 changes: 5 additions & 11 deletions src/FoxyEvents.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,19 @@
abstract class FoxyEvents
{
/**
* The "GET_ASSETS" event is triggered before the `solve` action of asset packages
* and during the retrieves the map of the asset packages.
*
* @Event("Foxy\Event\GetAssetsEvent")
* The `GET_ASSETS` event is triggered before the `solve` action of asset packages and while retrieving the map
* of the asset packages.
*/
final public const GET_ASSETS = 'foxy.get-assets';

/**
* The "POST_SOLVE" event is triggered after the `solve` action of asset packages and before
* the execution of the composer's fallback.
*
* @Event("Foxy\Event\PostSolveEvent")
* The `POST_SOLVE` event is triggered after the `solve` action of asset packages and before the execution of the
* composer's fallback.
*/
final public const POST_SOLVE = 'foxy.post-solve';

/**
* The "PRE_SOLVE" event is triggered before the `solve` action of asset packages.
*
* @Event("Foxy\Event\PreSolveEvent")
* The `PRE_SOLVE` event is triggered before the `solve` action of asset packages.
*/
final public const PRE_SOLVE = 'foxy.pre-solve';
}
Loading