16 lines
256 B
PHP
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;
|
|
}
|
|
} |