mirror of
				https://github.com/beestat/app.git
				synced 2025-11-03 18:37:01 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			310 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			310 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * Cache for these external API calls.
 | 
						|
 *
 | 
						|
 * @author Jon Ziebell
 | 
						|
 */
 | 
						|
class external_api_cache extends cora\crud {
 | 
						|
 | 
						|
  public static $converged = [];
 | 
						|
 | 
						|
  public static $user_locked = false;
 | 
						|
 | 
						|
  public function delete($id) {
 | 
						|
    throw new Exception('This method is not allowed.');
 | 
						|
  }
 | 
						|
}
 |