for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanesoft\Backups\Providers;
use Arcanesoft\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
/**
* Class AuthServiceProvider
*
* @author ARCANEDEV <[email protected]>
*/
class AuthServiceProvider extends ServiceProvider
{
/* -----------------------------------------------------------------
| Getters
| -----------------------------------------------------------------
* Get policy's classes.
* @return iterable
public function policyClasses(): iterable
return $this->app->get('config')->get('arcanesoft.backups.policies', []);
}