Passed
Push — master ( c0a3a7...3b84a4 )
by Jeroen
58:51
created

Notifications/SubscriptionNotificationEvent.php (1 issue)

1
<?php
2
3
namespace Elgg\Notifications;
4
5
/**
6
 * Subscription notification event
7
 *
8
 * @package    Elgg.Core
9
 * @subpackage Notifications
10
 */
11
class SubscriptionNotificationEvent extends Event {
0 ignored issues
show
Deprecated Code introduced by
The class Elgg\Notifications\Event has been deprecated: 2.3 ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

11
class SubscriptionNotificationEvent extends /** @scrutinizer ignore-deprecated */ Event {
Loading history...
12
	
13
}
14