24 lines
345 B
PHP
24 lines
345 B
PHP
<?php
|
|
namespace AIOSEO\BrokenLinkChecker\Standalone;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Registers the standalone components.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class Standalone {
|
|
/**
|
|
* Class constructor.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public function __construct() {
|
|
new Highlighter();
|
|
new SetupWizard();
|
|
}
|
|
} |