# fluent-cart/1.5.3/app/Http/Policies/UserPolicy.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.3. 13 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.3/code/app/Http/Policies/UserPolicy.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.3/raw/app/Http/Policies/UserPolicy.php
- Modified: 2026-02-25T14:08:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.5.3/code/app/Http/Policies/UserPolicy.php#L10-L20`.

```php
<?php

namespace FluentCart\App\Http\Policies;

use FluentCart\Framework\Http\Request\Request;

class UserPolicy extends Policy
{
    public function verifyRequest(Request $request): bool
    {
        return is_user_logged_in();
    }
}
```
