- Create BaseDepository class - Create Entity, Collection, Factory and Depository classes - Create FormattedNotification Entity, Collection and Factory to remove business logic from Notify repository - Create new NotificationCreationIntercepted exception to allow addons to cancel notification creation - Remove unused frio notifications/notify.tpl template
7 lines
134 B
PHP
7 lines
134 B
PHP
<?php
|
|
|
|
namespace Friendica\Navigation\Notifications\Exception;
|
|
|
|
class NotificationCreationInterceptedException extends \Exception
|
|
{
|
|
}
|