• File: TestInterface.php
  • Full Path: /home/atelipy/www/wpmain/plugins/duplicator/installer/dup-installer/src/Utils/Tests/TestInterface.php
  • File size: 275 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Duplicator\Installer\Utils\Tests;

interface TestInterface
{
    /**
     * @return bool true on success
     */
    public static function preTestPrepare();

    /**
     * @return bool true on success
     */
    public static function afterTestClean();
}