refactor: Run rector on lib/private

Signed-off-by: Carl Schwan <carl.schwan@nextcloud.com>
This commit is contained in:
Carl Schwan
2025-11-17 15:32:54 +01:00
committed by Carl Schwan
parent 5d0d0c17e5
commit 7b6078875b
370 changed files with 2595 additions and 3249 deletions

View File

@@ -14,11 +14,9 @@ use Psr\Log\LoggerInterface;
* Implementation based on https://github.com/marcj/topsort.php
*/
class AppScriptSort {
/** @var LoggerInterface */
private $logger;
public function __construct(LoggerInterface $logger) {
$this->logger = $logger;
public function __construct(
private LoggerInterface $logger,
) {
}
/**