15 lines
		
	
	
		
			201 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			201 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace Ratchet;
 | |
| 
 | |
| interface ApplicationInterface {
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     function getName();
 | |
| 
 | |
|     function onConnect();
 | |
| 
 | |
|     function onMessage();
 | |
| 
 | |
|     function onClose();
 | |
| } | 
