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