| 1 | <?php |
||
| 9 | class Text extends Packages implements PackageableInterface |
||
| 10 | { |
||
| 11 | |||
| 12 | protected $pool; |
||
| 13 | protected $minLength; |
||
| 14 | protected $maxLength; |
||
| 15 | protected $length; |
||
| 16 | |||
| 17 | public function setDefaults($defaultsArray = []) |
||
| 24 | |||
| 25 | protected function setPool($pool) |
||
| 29 | |||
| 30 | protected function setMinLength($min) |
||
| 34 | |||
| 35 | protected function setMaxLength($max) |
||
| 39 | |||
| 40 | protected function setLength($length) |
||
| 44 | |||
| 45 | private function doRandomization() |
||
| 61 | |||
| 62 | public function stringify() |
||
| 66 | } |
||
| 67 |