mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			348 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			348 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * RestWelcome controller
 | 
						|
 *
 | 
						|
 * @author Pierre HUBERT
 | 
						|
 */
 | 
						|
 | 
						|
class welcomeController {
 | 
						|
 | 
						|
	/**
 | 
						|
	 * Returns informations about the API
 | 
						|
	 *
 | 
						|
	 * @url GET /
 | 
						|
	 * @url GET /infos
 | 
						|
	 */
 | 
						|
	public function getInfos(){
 | 
						|
		return array(
 | 
						|
			"serviceDescription" => "This is the Comunic API Server.",
 | 
						|
			"clientURL" => "https://communiquons.org/",
 | 
						|
		);
 | 
						|
	}
 | 
						|
 | 
						|
} |