11 lines
		
	
	
		
			190 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			190 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| namespace nulib\php\content\impl;
 | |
| 
 | |
| use nulib\php\content\IContent;
 | |
| 
 | |
| class AContent implements IContent {
 | |
|   function getContent(): iterable {
 | |
|     return ["<span>content</span>"];
 | |
|   }
 | |
| }
 |