Initial Commit
This commit is contained in:
20
inc/database/engine/class-date.php
Normal file
20
inc/database/engine/class-date.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
/**
|
||||
* Base Custom Database Date Class.
|
||||
*/
|
||||
|
||||
namespace WP_Ultimo\Database\Engine;
|
||||
|
||||
// Exit if accessed directly
|
||||
defined('ABSPATH') || exit;
|
||||
|
||||
/**
|
||||
* The base class that all other database base classes extend.
|
||||
*
|
||||
* This class attempts to provide some universal immutability to all other
|
||||
* classes that extend it, starting with a magic getter, but likely expanding
|
||||
* into a magic call handler and others.
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
class Date extends \WP_Ultimo\Dependencies\BerlinDB\Database\Date {} // end class Date;
|
Reference in New Issue
Block a user