| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Darryldecode\Cart\Validators; |
||
| 18 | public static function instance() |
||
| 19 | { |
||
| 20 | if ( ! static::$factory) |
||
| 21 | { |
||
| 22 | $loader = new FileLoader( |
||
| 23 | new Filesystem(),'/Translations' |
||
| 24 | ); |
||
| 25 | |||
| 26 | $translator = new Translator($loader, 'en'); |
||
| 27 | static::$factory = new Factory($translator); |
||
| 28 | } |
||
| 29 | |||
| 30 | return static::$factory; |
||
| 31 | } |
||
| 32 | |||
| 58 | } |