13 lines
		
	
	
		
			216 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace nur\sery\sys\impl;
 | 
						|
 | 
						|
use nur\sery\sys\IStaticContent;
 | 
						|
 | 
						|
class AStaticContent implements IStaticContent {
 | 
						|
  function getContent(): iterable {
 | 
						|
    return [
 | 
						|
      [html::P, "static content"],
 | 
						|
    ];
 | 
						|
  }
 | 
						|
}
 |