Fibinger Ádám
2020-02-26 3ac2acb75dbc5b9d8674cd733f96e95f15826961
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
 
 
namespace EOG\Models;
 
 
class Interview
{
    /**
     * @var string
     */
    protected $title = "Interrrrrogacioooon!";
    /**
     * @var string
     */
    protected $teamName = '';
    /**
     * @var string Csapattag neve
     */
    protected $players = '';
 
    /**
     * @return string
     */
    public function getTitle(): string
    {
        return $this->title;
    }
 
    /**
     * @param string $title
     */
    public function setTitle(string $title): void
    {
        $this->title = $title;
    }
 
    /**
     * @return string
     */
    public function getTeamName(): string
    {
        return $this->teamName;
    }
 
    /**
     * @param string $teamName
     */
    public function setTeamName(string $teamName): void
    {
        $this->teamName = $teamName;
    }
 
    /**
     * @return string
     */
    public function getPlayers(): string
    {
        return $this->players;
    }
 
    /**
     * @param string $players
     */
    public function setPlayers(string $players): void
    {
        $this->players = $players;
    }
}