31 lines
450 B
PHP
31 lines
450 B
PHP
<?php
|
|
/**
|
|
* Adapter: Reports.
|
|
*
|
|
* Reports entity class.
|
|
*
|
|
* @package wsal
|
|
*
|
|
* @since 5.2.1
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WSAL\Entities;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
if ( ! class_exists( '\WSAL\Entities\Custom_Notifications_Entity' ) ) {
|
|
|
|
/**
|
|
* Responsible for the reports storage.
|
|
*/
|
|
class Custom_Notifications_Entity extends Abstract_Entity {
|
|
// phpcs:disable
|
|
// phpcs:enable
|
|
}
|
|
}
|