13 lines
		
	
	
		
			169 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			169 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Core\Elements;
 | |
| 
 | |
| abstract class StaticView {
 | |
| 
 | |
|   public abstract function getCode();
 | |
| 
 | |
|   public function __toString() {
 | |
|     return $this->getCode();
 | |
|   }
 | |
| 
 | |
| } |