1 | <?php |
||
10 | abstract class License |
||
11 | { |
||
12 | /** |
||
13 | * Owner of the licenses |
||
14 | * |
||
15 | * @var Model |
||
16 | */ |
||
17 | protected $owner; |
||
18 | |||
19 | /** |
||
20 | * The database model for tracking licenses |
||
21 | * |
||
22 | * @var LicenseModel |
||
23 | */ |
||
24 | protected $model; |
||
25 | |||
26 | /** |
||
27 | * The default starting amount for the license |
||
28 | * |
||
29 | * @var int |
||
30 | */ |
||
31 | protected $default = 0; |
||
32 | |||
33 | function __construct(Model $owner) |
||
48 | |||
49 | /** |
||
50 | * Throws exception if there are not enough licenses available |
||
51 | * |
||
52 | * @param int $quantity |
||
53 | * @param boolean $add |
||
54 | * @return void |
||
55 | */ |
||
56 | final public function allocate($quantity, $add = false) |
||
69 | |||
70 | /** |
||
71 | * Called when there are enough licenses available |
||
72 | * |
||
73 | * @param int $quantity |
||
74 | * @return void |
||
75 | */ |
||
76 | protected function success($quantity) |
||
80 | |||
81 | /** |
||
82 | * Called when there are not enough licenses available |
||
83 | * |
||
84 | * @param int $remaining |
||
85 | * @param int $quantity |
||
86 | * @return void |
||
87 | */ |
||
88 | protected function error($remaining, $quantity) |
||
92 | |||
93 | /** |
||
94 | * Returns the difference between the maximum amount licenses and what you are trying to limit |
||
95 | * |
||
96 | * @return int |
||
97 | */ |
||
98 | public function remaining() |
||
102 | |||
103 | /** |
||
104 | * Returns the maximum amount of licenses |
||
105 | * |
||
106 | * @return int |
||
107 | */ |
||
108 | public function maximum() |
||
112 | |||
113 | /** |
||
114 | * Returns the human readable error string when there are not enough licenses available. |
||
115 | * |
||
116 | * @param int $remaining Number of licenses available. |
||
117 | * @param int $quantity Number of licenses trying to allocate. |
||
118 | * @return string |
||
119 | */ |
||
120 | protected function message($remaining, $quantity) |
||
124 | |||
125 | /** |
||
126 | * Returns human readable string for this license |
||
127 | * |
||
128 | * @return string |
||
129 | */ |
||
130 | abstract public function name(); |
||
131 | |||
132 | /** |
||
133 | * Returns the current amount of licenses in use |
||
134 | * |
||
135 | * @return int |
||
136 | */ |
||
137 | abstract public function used(); |
||
138 | |||
139 | /** |
||
140 | * Called before adding to the license count. |
||
141 | * |
||
142 | * @param int $quantity |
||
143 | * @return void |
||
144 | */ |
||
145 | abstract protected function adding($quantity); |
||
146 | |||
147 | /** |
||
148 | * Called after adding to the license count |
||
149 | * |
||
150 | * @param int $quantity |
||
151 | * @return void |
||
152 | */ |
||
153 | abstract protected function added($quantity); |
||
154 | |||
155 | /** |
||
156 | * Called before subtracting the license count |
||
157 | * |
||
158 | * @param int $quantity |
||
159 | * @return void |
||
160 | */ |
||
161 | abstract protected function subtracting($quantity); |
||
162 | |||
163 | /** |
||
164 | * Called after subtracting the license count |
||
165 | * |
||
166 | * @param int $quantity |
||
167 | * @return void |
||
168 | */ |
||
169 | abstract protected function subtracted($quantity); |
||
170 | |||
171 | /** |
||
172 | * Add more licenses |
||
173 | * |
||
174 | * @param int $quantity |
||
175 | * @return boolean |
||
176 | */ |
||
177 | final public function add($quantity = 1) |
||
192 | |||
193 | /** |
||
194 | * Subtract licenses |
||
195 | * |
||
196 | * @param int $quantity |
||
197 | * @return boolean |
||
198 | */ |
||
199 | final public function sub($quantity = 1) |
||
218 | |||
219 | /** |
||
220 | * Set the amount of licenses |
||
221 | * |
||
222 | * @param int $quantity |
||
223 | * @return boolean |
||
224 | */ |
||
225 | final public function set($quantity) |
||
239 | } |
||
240 |
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.