| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 40 | public function __construct( |
||
| 41 | LoaderInterface $loader, |
||
| 42 | string $locale = '', |
||
| 43 | BookmarkInterface $bookmark = null |
||
| 44 | ) { |
||
| 45 | $this->loader = $loader; |
||
| 46 | |||
| 47 | $this->setLocale($locale); |
||
| 48 | |||
| 49 | $this->bookmark = $bookmark ?? new Bookmark(); |
||
| 50 | |||
| 51 | $this->bookmark->setLoader($loader); |
||
| 52 | } |
||
| 111 |