Completed
Push — 137-feature/construct-post-mod... ( 2fadb4...c92423 )
by Maria Daniel Deepak
03:42
created

BD_Post_Meta_Box_Module

Complexity

Total Complexity 0

Size/Duplication

Total Lines 1
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * Base class for a Bulk Delete Post Meta Box Module.
4
 *
5
 * @since 5.7.0
6
 *
7
 * @author Sudar
8
 *
9
 * @package BulkDelete\Base\Posts
10
 */
11
defined( 'ABSPATH' ) || exit; // Exit if accessed directly
12
13
/**
14
 * Encapsulates the Bulk Delete Post Meta box Module Logic.
15
 * All Bulk Delete Post Meta box Modules should extend this class.
16
 *
17
 * @see BD_Meta_Box_Module
18
 * @since 5.7.0
19
 * @abstract
20
 */
21
abstract class BD_Post_Meta_Box_Module extends BD_Meta_Box_Module {
22
23
}
24