1 | <?php namespace Nord\Lumen\Search\Formatter; |
||
6 | class Factory |
||
7 | { |
||
8 | const FORMAT_DATE = 'date'; |
||
9 | const FORMAT_LOWERCASE = 'lowercase'; |
||
10 | |||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | private static $map = [ |
||
15 | self::FORMAT_DATE => 'Nord\Lumen\Search\Formatter\DateFormatter', |
||
16 | self::FORMAT_LOWERCASE => 'Nord\Lumen\Search\Formatter\LowercaseFormatter', |
||
17 | ]; |
||
18 | |||
19 | |||
20 | /** |
||
21 | * @param string $format |
||
22 | * |
||
23 | * @return Formatter |
||
24 | * |
||
25 | * @throws InvalidArgument |
||
26 | */ |
||
27 | public function create($format) |
||
35 | } |
||
36 |