<?php

namespace iThemesSecurity\Contracts;

interface Runnable {
	/**
	 * Run the class.
	 *
	 * @return void
	 */
	public function run();
}
