deep-web-solutions/wordpress-framework-foundations

View on GitHub
src/includes/Storage/AbstractStore.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace DeepWebSolutions\Framework\Foundations\Storage;

\defined( 'ABSPATH' ) || exit;

/**
 * Template for encapsulating some of the most often needed required abilities of a store.
 *
 * @since   1.0.0
 * @version 1.3.0
 * @author  Antonius Hegyes <a.hegyes@deep-web-solutions.com>
 * @package DeepWebSolutions\WP-Framework\Foundations\Storage
 */
abstract class AbstractStore extends AbstractStorable implements StoreInterface {
    /* empty on purpose */
}