-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilme.class.php
77 lines (60 loc) · 1.1 KB
/
filme.class.php
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
70
71
72
73
74
75
76
77
<?php
/**
* Filme
*/
class Filme
{
private $titulo;
private $codigo;
private $sinopse;
private $quantidade;
private $trailer;
function __construct($titulo,$codigo,$sinopse,$quantidade,$trailer)
{
$this->titulo = $titulo;
$this->codigo = $codigo;
$this->sinopse = $sinopse;
$this->quantidade = $quantidade;
$this->trailer = $trailer;
}
public function setTitulo($titulo)
{
$this->titulo = $titulo;
}
public function getTitulo()
{
return $this->titulo;
}
public function setCodigo($codigo)
{
$this->codigo = $codigo;
}
public function getCodigo()
{
return $this->codigo;
}
public function setSinopse($sionopse)
{
$this->sinopse = $sionopse;
}
public function getSinopse()
{
return $this->sinopse;
}
public function setQuantidade($quantidade)
{
$this->quantidade = $quantidade;
}
public function getQuantidade()
{
return $this->quantidade;
}
public function setTrailer($trailer)
{
$this->trailer = $trailer;
}
public function getTrailer()
{
return $this->trailer;
}
}