mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 05:37:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			794 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| /**
 | |
|  * Class ClientStatementController.
 | |
|  */
 | |
| class ClientStatementController extends BaseController
 | |
| {
 | |
|     public function __construct()
 | |
|     {
 | |
|         parent::__construct();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Displays a client statement view for a given
 | |
|      * client_id.
 | |
|      * @return void
 | |
|      */
 | |
|     public function show()
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Updates the show view data dependent on
 | |
|      * configured variables.
 | |
|      * @return void
 | |
|      */
 | |
|     public function update()
 | |
|     {
 | |
|     }
 | |
| }
 |