15 lines
		
	
	
		
			210 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			210 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace Ratchet;
 | 
						|
 | 
						|
interface ReceiverInterface {
 | 
						|
    /**
 | 
						|
     * @return string
 | 
						|
     */
 | 
						|
    function getName();
 | 
						|
 | 
						|
    function handleConnect();
 | 
						|
 | 
						|
    function handleMessage();
 | 
						|
 | 
						|
    function handleClose();
 | 
						|
} |