MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
udamapentry.class
Ir para a documentação deste ficheiro.
1<?php
2
4{
5 private $to;
6 private $from;
7 private $toAssociative;
8 private $fromAssociative;
9
10 public function __construct($from, $to, $fromAssociative = NULL, $toAssociative = NULL)
11 {
12 $this->to = $to;
13 $this->from = $from;
14 $this->fromAssociative = $fromAssociative;
15 $this->toAssociative = $toAssociative;
16 }
17
18 public function getTo()
19 {
20 return $this->to;
21 }
22
23 public function getFrom()
24 {
25 return $this->from;
26 }
27
28 public function getToAssociative()
29 {
30 return $this->toAssociative;
31 }
32
33 public function getFromAssociative()
34 {
35 return $this->fromAssociative;
36 }
37}
38?>
__construct($from, $to, $fromAssociative=NULL, $toAssociative=NULL)