<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\Setup\SampleData;
/**
* Interface for SampleData modules installation
*
* @api
*/
interface InstallerInterface
{
/**
* Install SampleData module
*
* @return void
*/
public function install();
}
Back to Directory