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