# phastpress/1.82/classes/CacheRootCandidatesProviderImplementation.php

PhastPress, version 1.82. 19 lines.

- Page: https://pluginprobe.com/plugins/phastpress/1.82/code/classes/CacheRootCandidatesProviderImplementation.php
- Raw: https://pluginprobe.com/plugins/phastpress/1.82/raw/classes/CacheRootCandidatesProviderImplementation.php
- Modified: 2019-10-19T21:24:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/phastpress/1.82/code/classes/CacheRootCandidatesProviderImplementation.php#L10-L20`.

```php
<?php

namespace Kibo\PhastPlugins\PhastPress;


use Kibo\PhastPlugins\SDK\Caching\CacheRootCandidatesProvider;

class CacheRootCandidatesProviderImplementation implements CacheRootCandidatesProvider {

    public function getCacheRootCandidates() {
        return [
            WP_CONTENT_DIR . '/cache',
            WP_CONTENT_DIR . '/uploads',
            __DIR__ . '/../cache',
            sys_get_temp_dir()
        ];
    }
}

```
