elabftw/elabftw

View on GitHub
src/Storage/Cache.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * @author Nicolas CARPi <nico-git@deltablot.email>
 * @copyright 2022 Nicolas CARPi
 * @see https://www.elabftw.net Official website
 * @license AGPL-3.0
 * @package elabftw
 */

declare(strict_types=1);

namespace Elabftw\Storage;

/**
 * For local cache folder, used by many processes that need to write files at some point
 */
class Cache extends Local
{
    protected const string FOLDER = 'cache/elab';
}