| 1 | <?php |
||
| 9 | class FixedLengthFormattedStringIterator extends MapIterator |
||
| 10 | { |
||
| 11 | protected $substringMap; |
||
| 12 | protected $trim = null; |
||
| 13 | |||
| 14 | public function __construct($inputIterator, array $substringMap, array $options = array()) |
||
| 29 | |||
| 30 | static function newFromTemplate($inputIterator, $template, array $nameMap = array(), array $options = array()) |
||
| 35 | |||
| 36 | public function parseString($inputString) |
||
| 47 | } |
||
| 48 |
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.