-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPool.php
67 lines (62 loc) · 1.09 KB
/
Pool.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
<?php
/**
* Interface InterfaceCity
* @package Creational\ObjectPool
*/
interface CityInterface
{
/**
* City constructor.
* @param string $name
*/
public function __construct(string $name);
/**
* @return string
*/
public function getName(): string;
}
class City implements CityInterface
{
/**
* @var string
*/
protected $name;
/**
* City constructor.
* @param string $name
*/
public function __construct(string $name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName(): string
{
return $this->name;
}
}
class ObjectPool
{
/**
* @var array
*/
protected $pool = [];
/**
* @param string $name
* @return CityInterface
*/
public function getObject(string $name): CityInterface
{
return $this->pool[$name];
}
/**
* @param CityInterface $object
* @return void
*/
public function setObject(CityInterface $object) : void
{
$this->pool[$object->getName()] = $object;
}
}