11 lines
		
	
	
		
			124 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			124 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
namespace nur\cli\impl;
 | 
						|
 | 
						|
class SimpleDest {
 | 
						|
  public $args;
 | 
						|
 | 
						|
  function reset(): void {
 | 
						|
    $this->args = null;
 | 
						|
  }
 | 
						|
}
 |