This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/app/model/Example.php
2022-01-24 16:54:26 +01:00

16 lines
256 B
PHP

<?php
class Example
{
public Database $database;
public function __construct(Database $database)
{
$this->database = $database;
}
public function returnGivenString(string $string): string
{
return $string;
}
}