mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
24 lines
455 B
PHP
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();
|
|
}
|
|
|