ok

Mini Shell

Direktori : /home2/selectio/www/fms-worksuite/vendor/laravel/fortify/src/Http/Requests/
Upload File :
Current File : /home2/selectio/www/fms-worksuite/vendor/laravel/fortify/src/Http/Requests/VerifyEmailRequest.php

<?php

namespace Laravel\Fortify\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class VerifyEmailRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        if (! hash_equals((string) $this->user()->getKey(), (string) $this->route('id'))) {
            return false;
        }

        if (! hash_equals(sha1($this->user()->getEmailForVerification()), (string) $this->route('hash'))) {
            return false;
        }

        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [];
    }
}

Zerion Mini Shell 1.0