<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yaroslavpopovic / laravel-policy-soft-cache example snippets
return [
/*
* When enabled, the package will cache the results of all Policies in your Laravel application
*/
'cache_all_policies' => env('CACHE_ALL_POLICIES', true),
];
use Innoge\LaravelPolicySoftCache\Contracts\SoftCacheable;
class UserPolicy implements SoftCacheable
{
// ...
}