mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:37:31 -05:00 
			
		
		
		
	* style cs * Style CS * Throw Record not found exception if invalid primary key hash is provided * Improve error handling * Create abstract implementation for designs * working on custom designs * Add Design Model * invoice services * Download Invoice by Invitation
		
			
				
	
	
		
			27 lines
		
	
	
		
			518 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			518 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Designs;
 | 
						|
 | 
						|
abstract class AbstractDesign
 | 
						|
{
 | 
						|
	
 | 
						|
	abstract public function header();
 | 
						|
	
 | 
						|
	abstract public function body();
 | 
						|
	
 | 
						|
	abstract public function table();
 | 
						|
	
 | 
						|
	abstract public function footer();
 | 
						|
	
 | 
						|
	abstract public function table_styles();
 | 
						|
 | 
						|
} |