Files
Phraseanet/lib/Alchemy/Phrasea/Command/Upgrade/DatasUpgraderInterface.php
2012-06-21 09:33:15 +02:00

24 lines
455 B
PHP

<?php
namespace Alchemy\Phrasea\Command\Upgrade;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
interface DatasUpgraderInterface
{
/**
* Executes the upgrade
*/
public function execute(InputInterface $input, OutputInterface $output);
/**
* Return the duration estimation in seconds
*
* @return integer
*/
public function getTimeEstimation();
}