-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdapter.php
47 lines (39 loc) · 963 Bytes
/
Adapter.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
<?php
interface FirstTarget {
public function FirstMethod();
public function SecondMethod();
}
class FirstAdaptee {
public function FirstMethod() {
echo 'FirstMethod';
}
}
class Adapter implements FirstTarget {
private $_adaptee;
public function __construct(Adaptee $adaptee) {
$this->_adaptee = $adaptee;
}
public function FirstMethod() {
$this->_adaptee->FirstMethod();
}
public function SecondMethod() {
echo 'SecondMethod';
}
}
$adapter = new Adapter(new FirstAdaptee());
$adapter->FirstMethod();
$adapter->SecondMethod();
interface SecondTarget {
public function FirstMethod();
public function SecondMethod();
}
class SecondAdaptee {
public function FirstMethod() {}
}
class SecondAdapter extends SecondAdaptee implements SecondTarget {
public function SecondMethod() {}
}
$adapter = new SecondAdapter();
$adapter->FirstMethod();
$adapter->SecondMethod();
?>