Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix PHP 7.4 compatibility
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Mar 31, 2023
commit 08bcae8988fa3f01bd535a21d20ac0321426305a
4 changes: 3 additions & 1 deletion tests/Integration/app/lib/Controller/EndpointController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,14 @@
use OCP\IRequest;

class EndpointController extends OCSController {
protected IDBConnection $db;
public function __construct(
string $appName,
IRequest $request,
protected IDBConnection $db,
IDBConnection $db
) {
parent::__construct($appName, $request);
$this->db = $db;
}

/**
Expand Down