laravel/framework

View on GitHub
src/Illuminate/Console/Scheduling/CacheAware.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Illuminate\Console\Scheduling;

interface CacheAware
{
    /**
     * Specify the cache store that should be used.
     *
     * @param  string  $store
     * @return $this
     */
    public function useStore($store);
}