13 lines
		
	
	
		
			315 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			315 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| class PHPParser_Node_Scalar_LineConst extends PHPParser_Node_Scalar
 | |
| {
 | |
|     /**
 | |
|      * Constructs a __LINE__ const node
 | |
|      *
 | |
|      * @param array $attributes Additional attributes
 | |
|      */
 | |
|     public function __construct(array $attributes = array()) {
 | |
|         parent::__construct(array(), $attributes);
 | |
|     }
 | |
| } |