mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:17:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			209 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			209 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Feature\PdfMaker;
 | 
						|
 | 
						|
class Clean
 | 
						|
{
 | 
						|
    public function html()
 | 
						|
    {
 | 
						|
        return file_get_contents(
 | 
						|
            base_path('tests/Feature/PdfMaker/designs/clean.html')
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |