<?php

namespace DummyNamespace;

use DummyPrefix\Requests\DummyType\DummyParentRequest;

class DummyClass extends DummyParentRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return parent::authorize();
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        $rules = [
            //
        ];
        return array_merge(parent::rules(),$rules);
    }
}
