Files
2026-04-28 15:13:50 +02:00

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();
}
}