Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
solracsf committed Oct 17, 2024
1 parent 4ca697e commit 5396e17
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions apps/dav/lib/Migration/FixBirthdayCalendarComponent.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* SPDX-FileCopyrightText: 2016 ownCloud GmbH.
* SPDX-License-Identifier: AGPL-3.0-only
Expand Down
1 change: 1 addition & 0 deletions apps/files_sharing/lib/ShareBackend/File.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
Expand Down
1 change: 1 addition & 0 deletions apps/files_trashbin/lib/Command/CleanUp.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,18 @@ class ExpressionBuilder implements IExpressionBuilder {
/** @var QuoteHelper */
protected $helper;

/** @var IDBConnection */
protected $connection;

/** @var LoggerInterface */
protected $logger;

/** @var FunctionBuilder */
protected $functionBuilder;

public function __construct(
protected ConnectionAdapter $connection,
IQueryBuilder $queryBuilder,
protected LoggerInterface $logger,
) {
public function __construct(ConnectionAdapter $connection, IQueryBuilder $queryBuilder, LoggerInterface $logger) {
$this->connection = $connection;
$this->logger = $logger;
$this->helper = new QuoteHelper();
$this->expressionBuilder = new DoctrineExpressionBuilder($connection->getInner());
$this->functionBuilder = $queryBuilder->func();
Expand Down

0 comments on commit 5396e17

Please sign in to comment.