Skip to content

Commit

Permalink
[TASK] Change argument for tablesExist
Browse files Browse the repository at this point in the history
  • Loading branch information
sypets committed Oct 27, 2024
1 parent bd61607 commit f994d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/CheckLinks/ExcludeLinkTarget.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ protected function isTableExists(): bool
{
$connection = GeneralUtility::makeInstance(ConnectionPool::class)
->getConnectionForTable(static::TABLE);
if ($connection->createSchemaManager()->tablesExist(static::TABLE)) {
if ($connection->createSchemaManager()->tablesExist([static::TABLE])) {
return true;
}
return false;
Expand Down

0 comments on commit f994d7b

Please sign in to comment.