Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/fulltextsearch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Command/Reset.php')
-rw-r--r--lib/Command/Reset.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php
index 2a7cee1..42349e1 100644
--- a/lib/Command/Reset.php
+++ b/lib/Command/Reset.php
@@ -27,7 +27,7 @@
namespace OCA\FullTextSearch\Command;
use Exception;
-use OCA\FullTextSearch\Model\ExtendedBase;
+use OC\Core\Command\Base;
use OCA\FullTextSearch\Model\Runner;
use OCA\FullTextSearch\Service\IndexService;
use OCA\FullTextSearch\Service\MiscService;
@@ -37,7 +37,7 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
-class Reset extends ExtendedBase {
+class Reset extends Base {
/** @var IndexService */
private $indexService;
@@ -85,7 +85,7 @@ class Reset extends ExtendedBase {
protected function execute(InputInterface $input, OutputInterface $output) {
try {
- $this->runner->sourceIsCommandLine($this, $output);
+ $this->runner->sourceIsCommandLine($output);
$this->runner->start();
$this->runner->output('reset.');