lbrypress/classes/LBRY_Notifier.php
Lemuel Smyth cb61208b12
Prevent direct access from outside WordPress (#60)
* prevent access from outside wordpress

* prevent discovery of file structure
2022-02-13 19:34:20 -06:00

18 lines
276 B
PHP

<?php
/**
* Class for sending LBRYPress related admin notifications
*
* @package LBRYPress
*/
defined('ABSPATH') || die(); // Exit if accessed directly
class LBRY_Notifier
{
/**
* [__construct description]
*/
public function __construct()
{
}
}