radarrplexorganizrnginxsonarrdashboardembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdall
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							899 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							899 B
						
					
					
				
								<?php declare(strict_types=1);
							 | 
						|
								
							 | 
						|
								namespace PhpParser\Node\Stmt;
							 | 
						|
								
							 | 
						|
								use PhpParser\Node;
							 | 
						|
								
							 | 
						|
								class TraitUse extends Node\Stmt
							 | 
						|
								{
							 | 
						|
								    /** @var Node\Name[] Traits */
							 | 
						|
								    public $traits;
							 | 
						|
								    /** @var TraitUseAdaptation[] Adaptations */
							 | 
						|
								    public $adaptations;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Constructs a trait use node.
							 | 
						|
								     *
							 | 
						|
								     * @param Node\Name[]          $traits      Traits
							 | 
						|
								     * @param TraitUseAdaptation[] $adaptations Adaptations
							 | 
						|
								     * @param array                $attributes  Additional attributes
							 | 
						|
								     */
							 | 
						|
								    public function __construct(array $traits, array $adaptations = [], array $attributes = []) {
							 | 
						|
								        parent::__construct($attributes);
							 | 
						|
								        $this->traits = $traits;
							 | 
						|
								        $this->adaptations = $adaptations;
							 | 
						|
								    }
							 | 
						|
								
							 | 
						|
								    public function getSubNodeNames() : array {
							 | 
						|
								        return ['traits', 'adaptations'];
							 | 
						|
								    }
							 | 
						|
								    
							 | 
						|
								    public function getType() : string {
							 | 
						|
								        return 'Stmt_TraitUse';
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |