mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 22:47:32 -05:00 
			
		
		
		
	- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
		
			
				
	
	
		
			31 lines
		
	
	
		
			563 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			563 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Http\Requests;
 | 
						|
 | 
						|
 | 
						|
 | 
						|
class CreateTaxRateRequest extends TaxRateRequest
 | 
						|
{
 | 
						|
    // Expenses 
 | 
						|
    /**
 | 
						|
     * Determine if the user is authorized to make this request.
 | 
						|
     *
 | 
						|
     * @return bool
 | 
						|
     */
 | 
						|
    public function authorize()
 | 
						|
    {
 | 
						|
        return $this->user()->can('create', ENTITY_TAX_RATE);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the validation rules that apply to the request.
 | 
						|
     *
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function rules()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'name' => 'required',
 | 
						|
            'rate' => 'required',
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |