<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Setup\Module\Di\App\Task;
interface OperationInterface
{
/**
* Processes operation task
*
* @return void
*/
public function doOperation();
/**
* Returns operation name
*
* @return string
*/
public function getName();
}