Skip to content

Commit 9809e4d

Browse files
committed
fix(docs): Clean up event documentation in FoxyEvents class.
1 parent 65ffdab commit 9809e4d

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- Bug #117: Raise PHPStan level to `5` (@terabytesoftw)
2020
- Bug #118: Add `phpdoc_param_order` rule and update namespace references in `rector.php` (@terabytesoftw)
2121
- Enh #119: Add `php-forge/coding-standard` to development dependencies for code quality checks (@terabytesoftw)
22+
- Bug #120: Clean up event documentation in `FoxyEvents` class (@terabytesoftw)
2223

2324
## 0.1.2 June 10, 2024
2425

src/FoxyEvents.php

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,19 @@
77
abstract class FoxyEvents
88
{
99
/**
10-
* The "GET_ASSETS" event is triggered before the `solve` action of asset packages
11-
* and during the retrieves the map of the asset packages.
12-
*
13-
* @Event("Foxy\Event\GetAssetsEvent")
10+
* The `GET_ASSETS` event is triggered before the `solve` action of asset packages and during the retrieves the map
11+
* of the asset packages.
1412
*/
1513
final public const GET_ASSETS = 'foxy.get-assets';
1614

1715
/**
18-
* The "POST_SOLVE" event is triggered after the `solve` action of asset packages and before
19-
* the execution of the composer's fallback.
20-
*
21-
* @Event("Foxy\Event\PostSolveEvent")
16+
* The `POST_SOLVE` event is triggered after the `solve` action of asset packages and before the execution of the
17+
* composer's fallback.
2218
*/
2319
final public const POST_SOLVE = 'foxy.post-solve';
2420

2521
/**
26-
* The "PRE_SOLVE" event is triggered before the `solve` action of asset packages.
27-
*
28-
* @Event("Foxy\Event\PreSolveEvent")
22+
* The `PRE_SOLVE` event is triggered before the `solve` action of asset packages.
2923
*/
3024
final public const PRE_SOLVE = 'foxy.pre-solve';
3125
}

0 commit comments

Comments
 (0)