Projekt

Obecné

Profil

Stáhnout (221 Bajtů) Statistiky
| Větev: | Revize:
1 d9606f0d Tomáš Pašek
<?php
2
3
class Lemma {
4
    public $id;
5
    public $lemma;
6
    public $pos;
7
8
    public function __construct($id, $lemma, $pos)
9
    {
10
        $this->id = $id;
11
        $this->lemma = $lemma;
12
        $this->pos = $pos;
13
    }
14
}