File "SettingsRequest.php"

Full Path: /home/warrior1/public_html/plugins/file-manager/backend/app/Http/Requests/Settings/SettingsRequest.php
File size: 306 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\FM\Http\Requests\Settings;

use BitApps\WPKit\Http\Request\Request;
use BitApps\WPKit\Utils\Capabilities;

class SettingsRequest extends Request
{
    public function authorize()
    {
        return Capabilities::filter('bitapps_fm_can_view_settings', 'install_plugins');
    }
}