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

18 lines
280 B
PHP
Raw Normal View History

2022-01-24 10:54:42 +00:00
<?php
2022-03-13 19:54:34 +00:00
use App\Core\Database;
2022-03-02 06:15:12 +00:00
2022-01-24 15:54:26 +00:00
class Example
2022-01-24 10:54:42 +00:00
{
public Database $database;
public function __construct(Database $database)
{
$this->database = $database;
}
2022-01-24 15:54:26 +00:00
public function returnGivenString(string $string): string
{
return $string;
}
2022-01-24 10:54:42 +00:00
}