| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function register( $container ) { |
||
| 28 | $this->extendConfig( $container, 'providers', [] ); |
||
| 29 | |||
| 30 | $upload_dir = wp_upload_dir(); |
||
| 31 | $cache_dir = MixedType::addTrailingSlash( $upload_dir['basedir'] ) . 'wpemerge' . DIRECTORY_SEPARATOR . 'cache'; |
||
| 32 | $this->extendConfig( $container, 'cache', $cache_dir ); |
||
| 33 | } |
||
| 43 |