mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:30:07 -05:00 
			
		
		
		
	* Performance improvements moving from str_replace to strtr * Remove legacy docs * Clean up credit transformer * Working on invoice emails * Clean up for invoice designs * Tests for light and dark theme emails * Working on reminder scheduling * Reminder Job Class * Fixes for github actions * PHP CS * Test for reminders * Test for reminders
		
			
				
	
	
		
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			235 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Utils\ClientPortal\CustomMessage;
 | 
						|
 | 
						|
use Illuminate\Support\Facades\Facade;
 | 
						|
 | 
						|
class CustomMessageFacade extends Facade
 | 
						|
{
 | 
						|
    protected static function getFacadeAccessor()
 | 
						|
    {
 | 
						|
        return 'customMessage';
 | 
						|
    }
 | 
						|
}
 |