Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3namespace Olz\Command\SendDailyNotificationsCommand;
4
5interface NotificationGetterInterface {
6    /** @param array<string, mixed> $args */
7    public function getNotification(array $args): ?Notification;
8
9    public function autogenerateSubscriptions(): void;
10
11    /** @param array<string, mixed> $all_utils */
12    public function setAllUtils(array $all_utils): void;
13}