mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 18:07:35 -04:00 
			
		
		
		
	* Tests for authentication * Add db field to company table (required if we are doing jobs without an auth()->user() ) * Add Laravel Dusk for browser testing, add ability to set DB by incoming URL Hash
		
			
				
	
	
		
			14 lines
		
	
	
		
			194 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			194 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| use App\Http\Controllers\Traits\VerifiesUserEmail;
 | |
| use Illuminate\Http\Request;
 | |
| 
 | |
| class UserController extends Controller
 | |
| {
 | |
|     use VerifiesUserEmail;
 | |
| 
 | |
| 
 | |
| }
 |