diff --git a/Command/DriverLockCommand.php b/Command/DriverLockCommand.php index d1fed4d..6a07412 100644 --- a/Command/DriverLockCommand.php +++ b/Command/DriverLockCommand.php @@ -5,10 +5,10 @@ use Lexik\Bundle\MaintenanceBundle\Drivers\AbstractDriver; use Lexik\Bundle\MaintenanceBundle\Drivers\DriverTtlInterface; +use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand; /** * Create a lock action @@ -16,7 +16,7 @@ * @package LexikMaintenanceBundle * @author Gilles Gauthier */ -class DriverLockCommand extends ContainerAwareCommand +class DriverLockCommand extends Command { protected $ttl;