Skip to content

Commit cd17e36

Browse files
dependabot[bot]max-nextcloud
authored andcommitted
chore(deps): Bump teamtnt/tntsearch from 5.0.0 to 5.0.2
Bumps [teamtnt/tntsearch](https://github.com/teamtnt/tntsearch) from 5.0.0 to 5.0.2. - [Release notes](https://github.com/teamtnt/tntsearch/releases) - [Changelog](https://github.com/teamtnt/tntsearch/blob/master/CHANGELOG.md) - [Commits](teamtnt/tntsearch@v5.0.0...v5.0.2) --- updated-dependencies: - dependency-name: teamtnt/tntsearch dependency-version: 5.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Max <max@nextcloud.com>
1 parent cb09945 commit cd17e36

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

composer.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Search/FileSearch/FileIndexer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
use OCP\Files\NotPermittedException;
1818
use OCP\Lock\LockedException;
1919
use PDO;
20-
use TeamTNT\TNTSearch\Contracts\EngineContract;
20+
use TeamTNT\TNTSearch\Engines\EngineInterface;
2121
use TeamTNT\TNTSearch\Indexer\TNTIndexer;
2222
use TeamTNT\TNTSearch\Support\Collection;
2323

2424
/**
2525
* @property PDO|null $index
2626
*/
2727
class FileIndexer extends TNTIndexer {
28-
public function __construct(EngineContract $engine) {
28+
public function __construct(EngineInterface $engine) {
2929
parent::__construct($engine);
3030
$this->disableOutput(true);
3131
}

lib/Search/FileSearch/FileSearcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use OCP\Files\File;
1313
use OCP\Files\NotFoundException;
1414
use PDO;
15-
use TeamTNT\TNTSearch\Support\TokenizerInterface;
15+
use TeamTNT\TNTSearch\Tokenizer\TokenizerInterface;
1616
use TeamTNT\TNTSearch\TNTSearch;
1717

1818
/**

lib/Search/FileSearch/WordTokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace OCA\Collectives\Search\FileSearch;
1111

12-
use TeamTNT\TNTSearch\Support\ProductTokenizer;
12+
use TeamTNT\TNTSearch\Tokenizer\ProductTokenizer;
1313

1414
/**
1515
* This tokenizer is based on the ProductTokenizer but strips away non-letters and non-numbers characters.

0 commit comments

Comments
 (0)