Files
nextcloud-forum/gen/util/{{pascalCase name}}Util.php
2025-11-06 02:03:11 +02:00

23 lines
378 B
PHP

<?php
declare(strict_types=1);
// SPDX-FileCopyrightText: Chen Asraf <contact@casraf.dev>
// SPDX-License-Identifier: AGPL-3.0-or-later
namespace OCA\Forum\Util;
use Psr\Log\LoggerInterface;
class {{pascalCase name}}Util {
public function __construct(
private LoggerInterface $logger,
) {
//
}
// public function doSomething(): void {
// // Do something
// }
}