12 lines
		
	
	
		
			212 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			212 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace nur;
 | 
						|
 | 
						|
use nur\b\text\Word;
 | 
						|
 | 
						|
class words {
 | 
						|
  static function q(int $count, string $spec, bool $adjective=true): string {
 | 
						|
    $word = new Word($spec, $adjective);
 | 
						|
    return $word->q($count);
 | 
						|
  }
 | 
						|
}
 |