| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function register(Container $pimple) |
||
| 16 | { |
||
| 17 | $pimple['saxulum.crud.listing.types'] = function(){ |
||
| 18 | return array( |
||
| 19 | new ArrayType(), |
||
| 20 | new FloatType(), |
||
| 21 | new IntegerType(), |
||
| 22 | new StringType(), |
||
| 23 | ); |
||
| 24 | }; |
||
| 25 | |||
| 26 | $pimple['saxulum.crud.listing.factory'] = function() use ($pimple) { |
||
| 27 | return new ListingFactory($pimple['saxulum.crud.listing.types']); |
||
| 28 | }; |
||
| 29 | } |
||
| 30 | } |
||
| 31 |