Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
<?php
declare(strict_types=1);
namespace Korobochkin\WPKit\Uninstall;
/**
 * Interface UninstallInterface
 */
interface UninstallInterface
{
    /**
     * Runs all uninstall methods and removes everything.
     *
     * @throws \Exception If suppress exceptions is not enabled.
     *
     * @return $this For chain calls.
     */
    public function run();
}