1 | <?php |
||
5 | class ParameterBag implements ParameterBagInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var int |
||
9 | */ |
||
10 | protected $id; |
||
11 | |||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | protected $width; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | protected $height; |
||
21 | |||
22 | /** |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $extra = []; |
||
26 | |||
27 | /** |
||
28 | * @param int $id |
||
29 | * @param int $width |
||
30 | * @param int $height |
||
31 | * @param array $extra |
||
32 | */ |
||
33 | public function __construct($id, $width, $height, array $extra = []) |
||
40 | |||
41 | /** |
||
42 | * @return int |
||
43 | */ |
||
44 | public function getId() |
||
48 | |||
49 | /** |
||
50 | * @return int |
||
51 | */ |
||
52 | public function getWidth() |
||
56 | |||
57 | /** |
||
58 | * @return int |
||
59 | */ |
||
60 | public function getHeight() |
||
64 | |||
65 | /** |
||
66 | * @return array |
||
67 | */ |
||
68 | public function getExtra() |
||
72 | |||
73 | /** |
||
74 | * @param array $defaults |
||
75 | */ |
||
76 | public function setDefaults(array $defaults) |
||
80 | |||
81 | /** |
||
82 | * @return array |
||
83 | */ |
||
84 | public function toArray() |
||
92 | } |
||
93 |