for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Base class for a Bulk Delete Post Meta Box Module.
*
* @since 5.7.0
* @author Sudar
* @package BulkDelete\Base\Posts
*/
defined( 'ABSPATH' ) || exit; // Exit if accessed directly
* Encapsulates the Bulk Delete Post Meta box Module Logic.
* All Bulk Delete Post Meta box Modules should extend this class.
* @see BD_Meta_Box_Module
* @abstract
abstract class BD_Post_Meta_Box_Module extends BD_Meta_Box_Module {
}