mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 10:41:56 +01:00
16 lines
260 B
PHP
16 lines
260 B
PHP
<?php
|
|
|
|
class Book {
|
|
public $title;
|
|
public $author;
|
|
public $description;
|
|
|
|
public function __construct($title, $author, $description)
|
|
{
|
|
$this->title = $title;
|
|
$this->author = $author;
|
|
$this->description = $description;
|
|
}
|
|
}
|
|
|
|
?>
|