- re-added Setting::getAll() to API/Setting::set() in response - updated settings/setup tests
11 lines
186 B
PHP
11 lines
186 B
PHP
<?php
|
|
namespace MailPoet\API;
|
|
|
|
if(!defined('ABSPATH')) exit;
|
|
|
|
final class Error {
|
|
const UNKNOWN = 'unknown';
|
|
const BAD_REQUEST = 'bad_request';
|
|
|
|
private function __construct() {}
|
|
} |