You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							473 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							473 B
						
					
					
				<?php
 | 
						|
 | 
						|
namespace App\Models\Validation\Messages;
 | 
						|
 | 
						|
use App\Models\Validation\Messages\BaseMessages;
 | 
						|
 | 
						|
class CompanyMessagesFactory
 | 
						|
{
 | 
						|
    protected array $messages = [
 | 
						|
        'found' => 'A company with the name is valid.',
 | 
						|
        'not_found' => 'A company with the name does not exist!!!',
 | 
						|
        'invalid_name' => 'The company name is empty, please, write the name!!!',
 | 
						|
    ];
 | 
						|
 | 
						|
    public function create()
 | 
						|
    {
 | 
						|
        return new BaseMessages($this->messages);
 | 
						|
    }
 | 
						|
}
 | 
						|
 |