php7-mysql-data/Kapitel_4/Lektion_6/src/Kuchen.php

16 lines
278 B
PHP
Raw Normal View History

2016-08-16 21:20:53 +02:00
<?php
class Kuchen
{
private $geschmacksrichtung;
public function __construct($geschmacksrichtung)
{
$this->geschmacksrichtung = $geschmacksrichtung;
}
public function getGeschmacksrichtung()
{
return $this->geschmacksrichtung;
}
}