11 lines
		
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			179 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace nulib\php\content\impl;
 | |
| 
 | |
| use nulib\php\content\IPrintable;
 | |
| 
 | |
| class APrintable implements IPrintable {
 | |
|   function print(): void {
 | |
|     echo "<p>printable</p>";
 | |
|   }
 | |
| }
 |