mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:47:32 -04:00 
			
		
		
		
	- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Services;
 | |
| 
 | |
| use App\Ninja\Repositories\UserRepository;
 | |
| use App\Ninja\Datatables\UserDatatable;
 | |
| 
 | |
| /**
 | |
|  * Class UserService
 | |
|  */
 | |
| class UserService extends BaseService
 | |
| {
 | |
|     /**
 | |
|      * @var UserRepository
 | |
|      */
 | |
|     protected $userRepo;
 | |
| 
 | |
|     /**
 | |
|      * @var DatatableService
 | |
|      */
 | |
|     protected $datatableService;
 | |
| 
 | |
|     /**
 | |
|      * UserService constructor.
 | |
|      *
 | |
|      * @param UserRepository $userRepo
 | |
|      * @param DatatableService $datatableService
 | |
|      */
 | |
|     public function __construct(UserRepository $userRepo, DatatableService $datatableService)
 | |
|     {
 | |
|         $this->userRepo = $userRepo;
 | |
|         $this->datatableService = $datatableService;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return UserRepository
 | |
|      */
 | |
|     protected function getRepo()
 | |
|     {
 | |
|         return $this->userRepo;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param $accountId
 | |
|      * @return \Illuminate\Http\JsonResponse
 | |
|      */
 | |
|     public function getDatatable($accountId)
 | |
|     {
 | |
|         $datatable = new UserDatatable(false);
 | |
|         $query = $this->userRepo->find($accountId);
 | |
| 
 | |
|         return $this->datatableService->createDatatable($datatable, $query);
 | |
|     }
 | |
| }
 |