We are going to use this class to store all variables that we would store with globals and defines. It will be initialized in the initializer and we'll be able to get any variable with static methods.
10 lines
115 B
PHP
10 lines
115 B
PHP
<?php
|
|
namespace MailPoet\Config;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
class Migrator {
|
|
function __construct() {
|
|
}
|
|
}
|