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