Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Service\Notification\Factory; |
| 4 | |
| 5 | use Symfony\Component\DependencyInjection\Attribute\AutoconfigureTag; |
| 6 | |
| 7 | /** |
| 8 | * @author Wilhelm Zwertvaegher |
| 9 | */ |
| 10 | #[AutoconfigureTag('app.notification_props_builder')] |
| 11 | interface NotificationPropsBuilder |
| 12 | { |
| 13 | public function buildProps(object $source): NotificationProps; |
| 14 | } |