@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @var int |
92 | 92 | */ |
93 | - private $level= 0; |
|
93 | + private $level=0; |
|
94 | 94 | |
95 | 95 | /** |
96 | 96 | * Section indent level. |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @var int |
101 | 101 | */ |
102 | - private $sectionLevel= 0; |
|
102 | + private $sectionLevel=0; |
|
103 | 103 | |
104 | 104 | /** |
105 | 105 | * Opened nodes. |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @var [ Htsl\Parser\Node\Contracts\ANode, ] |
110 | 110 | */ |
111 | - private $openedNodes= []; |
|
111 | + private $openedNodes=[ ]; |
|
112 | 112 | |
113 | 113 | /** |
114 | 114 | * Current scopes. |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * |
118 | 118 | * @var [ Htsl\Parser\Node\Contracts\ANode, ] |
119 | 119 | */ |
120 | - private $scopes= []; |
|
120 | + private $scopes=[ ]; |
|
121 | 121 | |
122 | 122 | /** |
123 | 123 | * Current line number. |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * |
127 | 127 | * @var int |
128 | 128 | */ |
129 | - private $lineNumber= 0; |
|
129 | + private $lineNumber=0; |
|
130 | 130 | |
131 | 131 | /** |
132 | 132 | * Current line. |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * |
145 | 145 | * @var [ Htsl\Parser\Section, ] |
146 | 146 | */ |
147 | - private $sections=[]; |
|
147 | + private $sections=[ ]; |
|
148 | 148 | |
149 | 149 | /** |
150 | 150 | * Whether the document is executed. |
@@ -184,13 +184,13 @@ discard block |
||
184 | 184 | */ |
185 | 185 | public function __construct( Htsl$htsl, Buffer$buffer, self$parent=null ) |
186 | 186 | { |
187 | - $this->htsl= $htsl; |
|
188 | - $this->buffer= $buffer; |
|
187 | + $this->htsl=$htsl; |
|
188 | + $this->buffer=$buffer; |
|
189 | 189 | |
190 | 190 | if( $parent ){ |
191 | - $this->parent= $parent; |
|
192 | - $this->docType= $parent->docType; |
|
193 | - $this->indentation= $parent->indentation; |
|
191 | + $this->parent=$parent; |
|
192 | + $this->docType=$parent->docType; |
|
193 | + $this->indentation=$parent->indentation; |
|
194 | 194 | }else{ |
195 | 195 | $this->parseFirstLine(); |
196 | 196 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | protected function getLine():Line |
252 | 252 | { |
253 | 253 | do{ |
254 | - $line= $this->buffer->getLine(); |
|
254 | + $line=$this->buffer->getLine(); |
|
255 | 255 | }while( $line->isEmpty() && $line->hasMore() ); |
256 | 256 | |
257 | 257 | return $line; |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | */ |
269 | 269 | public function getConfig( string...$keys ) |
270 | 270 | { |
271 | - return $this->htsl->getConfig(array_shift($keys),$this->docType,...$keys); |
|
271 | + return $this->htsl->getConfig(array_shift($keys), $this->docType, ...$keys); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -316,16 +316,16 @@ discard block |
||
316 | 316 | */ |
317 | 317 | protected function parseFirstLine():self |
318 | 318 | { |
319 | - $line= $this->getLine(); |
|
319 | + $line=$this->getLine(); |
|
320 | 320 | |
321 | 321 | if( '@'===$line->getChar(0) ){ |
322 | 322 | return $this->setExtending($line); |
323 | 323 | } |
324 | 324 | |
325 | - $this->docType= $line->content; |
|
326 | - $docTypeContent= $this->getConfig('doc_types') or $this->throw("DocType $this->docType is not supported"); |
|
325 | + $this->docType=$line->content; |
|
326 | + $docTypeContent=$this->getConfig('doc_types') or $this->throw("DocType $this->docType is not supported"); |
|
327 | 327 | |
328 | - $this->indentation= $this->htsl->getConfig('indentation',$this->docType) ?? ( function( $scalarOrFalse ){ return is_scalar($scalarOrFalse)?$scalarOrFalse:false; } )($this->htsl->getConfig('indentation')); |
|
328 | + $this->indentation=$this->htsl->getConfig('indentation', $this->docType) ?? (function( $scalarOrFalse ){ return is_scalar($scalarOrFalse)? $scalarOrFalse : false; } )($this->htsl->getConfig('indentation')); |
|
329 | 329 | |
330 | 330 | $this->appendLine($docTypeContent); |
331 | 331 | |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | */ |
344 | 344 | protected function setExtending( Line$firstLine ):self |
345 | 345 | { |
346 | - switch( $name= $firstLine->pregGet('/(?<=^@)[\w-:]+/') ){ |
|
346 | + switch( $name=$firstLine->pregGet('/(?<=^@)[\w-:]+/') ){ |
|
347 | 347 | default:{ |
348 | 348 | $this->throw("The @$name is not supported."); |
349 | 349 | }break; |
@@ -369,8 +369,8 @@ discard block |
||
369 | 369 | */ |
370 | 370 | protected function lineByLine():self |
371 | 371 | { |
372 | - while( ($line= $this->getLine())->hasMore() ){ |
|
373 | - $this->lineNumber+= 1; |
|
372 | + while( ($line=$this->getLine())->hasMore() ){ |
|
373 | + $this->lineNumber+=1; |
|
374 | 374 | |
375 | 375 | if( $this->embedment ){ |
376 | 376 | $this->embeddingParse($line); |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | |
384 | 384 | $this->closeNodes($this->level); |
385 | 385 | |
386 | - $this->isExecuted= true; |
|
386 | + $this->isExecuted=true; |
|
387 | 387 | |
388 | 388 | return $this; |
389 | 389 | } |
@@ -418,10 +418,10 @@ discard block |
||
418 | 418 | */ |
419 | 419 | protected function startEmbedding( string$embedType ):self |
420 | 420 | { |
421 | - $embedmentClass= '\\Htsl\\Embedment\\'.ucfirst($embedType).'Embedment'; |
|
421 | + $embedmentClass='\\Htsl\\Embedment\\'.ucfirst($embedType).'Embedment'; |
|
422 | 422 | class_exists($embedmentClass) or $this->throw("Embed type $embedType not exists."); |
423 | 423 | |
424 | - $this->embedment= new $embedmentClass($this); |
|
424 | + $this->embedment=new $embedmentClass($this); |
|
425 | 425 | |
426 | 426 | return $this; |
427 | 427 | } |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | public function breakEmbedding():self |
437 | 437 | { |
438 | 438 | $this->append($this->embedment->getContent()); |
439 | - $this->embedment= null; |
|
439 | + $this->embedment=null; |
|
440 | 440 | |
441 | 441 | return $this; |
442 | 442 | } |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | */ |
453 | 453 | protected function parseLine( Line$line ):self |
454 | 454 | { |
455 | - $this->currentLine= $line; |
|
455 | + $this->currentLine=$line; |
|
456 | 456 | $this->setLevel($line->getIndentLevel()); |
457 | 457 | |
458 | 458 | $this->{'parse'.ucfirst($this->getLineType($line))}($line); |
@@ -471,10 +471,10 @@ discard block |
||
471 | 471 | */ |
472 | 472 | protected function getLineType( Line$line ):string |
473 | 473 | { |
474 | - $possibleType= self::POSSIBLE_LINE_TYPES; |
|
474 | + $possibleType=self::POSSIBLE_LINE_TYPES; |
|
475 | 475 | |
476 | 476 | for( $i=0; is_array($possibleType); ++$i ){ |
477 | - $possibleType= $possibleType[$line->getChar($i)]??$possibleType[' ']; |
|
477 | + $possibleType=$possibleType[ $line->getChar($i) ]??$possibleType[ ' ' ]; |
|
478 | 478 | } |
479 | 479 | |
480 | 480 | return $possibleType; |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | * |
490 | 490 | * @todo Make this const private when php 7.1 |
491 | 491 | */ |
492 | - const POSSIBLE_LINE_TYPES= [ |
|
492 | + const POSSIBLE_LINE_TYPES=[ |
|
493 | 493 | '`'=> [ |
494 | 494 | '='=> 'expressionHtmlLine', |
495 | 495 | ' '=> 'htmlLine', |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | */ |
514 | 514 | protected function parseHtmlLine( Line$line ):self |
515 | 515 | { |
516 | - return $this->openNode(new StringNode($this,$line))->appendLine($line->slice(1)); |
|
516 | + return $this->openNode(new StringNode($this, $line))->appendLine($line->slice(1)); |
|
517 | 517 | } |
518 | 518 | |
519 | 519 | /** |
@@ -527,7 +527,7 @@ discard block |
||
527 | 527 | */ |
528 | 528 | protected function parseStringLine( Line$line ):self |
529 | 529 | { |
530 | - return $this->openNode(new StringNode($this,$line))->appendLine($this->htmlEntities(trim($line->getContent()))); |
|
530 | + return $this->openNode(new StringNode($this, $line))->appendLine($this->htmlEntities(trim($line->getContent()))); |
|
531 | 531 | } |
532 | 532 | |
533 | 533 | /** |
@@ -541,11 +541,11 @@ discard block |
||
541 | 541 | */ |
542 | 542 | protected function parseExpressionLine( Line$line ):self |
543 | 543 | { |
544 | - $content= $line->slice(1); |
|
545 | - $ent_flag= var_export($this->htsl->getConfig('ENT_flags',$this->docType),true); |
|
546 | - $charset= var_export($this->htsl->getConfig('charset'),true); |
|
544 | + $content=$line->slice(1); |
|
545 | + $ent_flag=var_export($this->htsl->getConfig('ENT_flags', $this->docType), true); |
|
546 | + $charset=var_export($this->htsl->getConfig('charset'), true); |
|
547 | 547 | |
548 | - return $this->openNode(new StringNode($this,$line))->appendLine("<?=htmlentities($content,$ent_flag,$charset,false)?>"); |
|
548 | + return $this->openNode(new StringNode($this, $line))->appendLine("<?=htmlentities($content,$ent_flag,$charset,false)?>"); |
|
549 | 549 | } |
550 | 550 | |
551 | 551 | /** |
@@ -559,9 +559,9 @@ discard block |
||
559 | 559 | */ |
560 | 560 | protected function parseExpressionHtmlLine( Line$line ):self |
561 | 561 | { |
562 | - $content= $line->slice(1); |
|
562 | + $content=$line->slice(1); |
|
563 | 563 | |
564 | - return $this->openNode(new StringNode($this,$line))->appendLine("<?$content?>"); |
|
564 | + return $this->openNode(new StringNode($this, $line))->appendLine("<?$content?>"); |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | /** |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | */ |
576 | 576 | protected function parseCommentLine( Line$line ):self |
577 | 577 | { |
578 | - $node= new CommentNode($this,$line); |
|
578 | + $node=new CommentNode($this, $line); |
|
579 | 579 | |
580 | 580 | return $this->openNode($node)->appendLine($node->open()); |
581 | 581 | } |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | */ |
592 | 592 | protected function parseTagLine( Line$line ):self |
593 | 593 | { |
594 | - $node= new TagNode($this,$line); |
|
594 | + $node=new TagNode($this, $line); |
|
595 | 595 | |
596 | 596 | $this->appendLine($node->open()); |
597 | 597 | |
@@ -611,7 +611,7 @@ discard block |
||
611 | 611 | */ |
612 | 612 | protected function parseControlLine( Line$line ):self |
613 | 613 | { |
614 | - $node= new ControlNode($this,$line); |
|
614 | + $node=new ControlNode($this, $line); |
|
615 | 615 | |
616 | 616 | return $this->appendLine($node->open())->openNode($node); |
617 | 617 | } |
@@ -627,7 +627,7 @@ discard block |
||
627 | 627 | */ |
628 | 628 | protected function parseDocControlLine( Line$line ):self |
629 | 629 | { |
630 | - switch( $name= $line->pregGet('/(?<=^@)[\w-:]+/') ){ |
|
630 | + switch( $name=$line->pregGet('/(?<=^@)[\w-:]+/') ){ |
|
631 | 631 | default:{ |
632 | 632 | $this->throw("The @$name is not supported."); |
633 | 633 | }break; |
@@ -659,10 +659,10 @@ discard block |
||
659 | 659 | */ |
660 | 660 | protected function extend( string$fileName ):self |
661 | 661 | { |
662 | - $this->parent= new static($this->htsl,$this->buffer->goSide($fileName)); |
|
662 | + $this->parent=new static($this->htsl, $this->buffer->goSide($fileName)); |
|
663 | 663 | |
664 | - $this->docType= $this->parent->docType; |
|
665 | - $this->indentation= $this->parent->indentation; |
|
664 | + $this->docType=$this->parent->docType; |
|
665 | + $this->indentation=$this->parent->indentation; |
|
666 | 666 | |
667 | 667 | return $this; |
668 | 668 | } |
@@ -676,15 +676,15 @@ discard block |
||
676 | 676 | * |
677 | 677 | * @return \Htsl\Parser\Document |
678 | 678 | */ |
679 | - protected function include( Line$line ):self |
|
679 | + protected function include(Line$line):self |
|
680 | 680 | { |
681 | - $inclued= (new static($this->htsl,$this->buffer->goSide($line->pregGet('/(?<=\( ).*(?= \))/')),$this))->execute()->content; |
|
681 | + $inclued=(new static($this->htsl, $this->buffer->goSide($line->pregGet('/(?<=\( ).*(?= \))/')), $this))->execute()->content; |
|
682 | 682 | |
683 | 683 | if( false!==$this->indentation ){ |
684 | - $inclued= preg_replace('/(?<=^|\\n)(?!$)/',str_repeat($this->indentation,$this->level-$this->sectionLevel),$inclued); |
|
684 | + $inclued=preg_replace('/(?<=^|\\n)(?!$)/', str_repeat($this->indentation, $this->level-$this->sectionLevel), $inclued); |
|
685 | 685 | } |
686 | 686 | |
687 | - $node= new StringNode($this,$line); |
|
687 | + $node=new StringNode($this, $line); |
|
688 | 688 | |
689 | 689 | $this->openNode($node); |
690 | 690 | |
@@ -704,7 +704,7 @@ discard block |
||
704 | 704 | */ |
705 | 705 | protected function defineSection( Line$line ):self |
706 | 706 | { |
707 | - $node= new SectionNode($this,$line); |
|
707 | + $node=new SectionNode($this, $line); |
|
708 | 708 | |
709 | 709 | $node->open(); |
710 | 710 | |
@@ -724,22 +724,22 @@ discard block |
||
724 | 724 | */ |
725 | 725 | protected function showSection( Line$line ):self |
726 | 726 | { |
727 | - $sectionName= $line->pregGet('/(?<=\( ).*(?= \))/'); |
|
727 | + $sectionName=$line->pregGet('/(?<=\( ).*(?= \))/'); |
|
728 | 728 | |
729 | - if( !isset($this->sections[$sectionName]) ){ |
|
730 | - $this->openNode(new StringNode($this,$line)); |
|
729 | + if( !isset($this->sections[ $sectionName ]) ){ |
|
730 | + $this->openNode(new StringNode($this, $line)); |
|
731 | 731 | |
732 | 732 | return $this; |
733 | 733 | } |
734 | - $content= $this->sections[$sectionName]->content; |
|
734 | + $content=$this->sections[ $sectionName ]->content; |
|
735 | 735 | |
736 | 736 | if( false!==$this->indentation ){ |
737 | - $content= preg_replace('/(?<=^|\\n)(?!$)/',str_repeat($this->indentation,$this->level),$content); |
|
737 | + $content=preg_replace('/(?<=^|\\n)(?!$)/', str_repeat($this->indentation, $this->level), $content); |
|
738 | 738 | } |
739 | 739 | |
740 | 740 | $this->append($content); |
741 | 741 | |
742 | - $node= new NamelessSectionNode($this,$line); |
|
742 | + $node=new NamelessSectionNode($this, $line); |
|
743 | 743 | |
744 | 744 | $node->open(); |
745 | 745 | |
@@ -758,8 +758,8 @@ discard block |
||
758 | 758 | public function setSection( Section$section=null ):self |
759 | 759 | { |
760 | 760 | if( !$section ){ |
761 | - $this->sectionLevel= 0; |
|
762 | - $this->currentSection= null; |
|
761 | + $this->sectionLevel=0; |
|
762 | + $this->currentSection=null; |
|
763 | 763 | |
764 | 764 | return $this; |
765 | 765 | } |
@@ -768,17 +768,17 @@ discard block |
||
768 | 768 | $this->throw('Nesting definition of section is forbidden.'); |
769 | 769 | } |
770 | 770 | |
771 | - if( isset($this->parent->sections[$section->name]) ){ |
|
771 | + if( isset($this->parent->sections[ $section->name ]) ){ |
|
772 | 772 | $this->throw("Section {$section->name} already defined."); |
773 | 773 | } |
774 | 774 | |
775 | - $this->currentSection= $section; |
|
775 | + $this->currentSection=$section; |
|
776 | 776 | |
777 | 777 | if( $section->name ){ |
778 | - $this->parent->sections[$section->name]=$section; |
|
778 | + $this->parent->sections[ $section->name ]=$section; |
|
779 | 779 | } |
780 | 780 | |
781 | - $this->sectionLevel= $this->level+1; |
|
781 | + $this->sectionLevel=$this->level+1; |
|
782 | 782 | |
783 | 783 | return $this; |
784 | 784 | } |
@@ -794,8 +794,8 @@ discard block |
||
794 | 794 | { |
795 | 795 | if( $this->parent ){ |
796 | 796 | foreach( $this->sections as $name=>$section ){ |
797 | - if( !isset($this->parent->sections[$name]) ){ |
|
798 | - $this->parent->sections[$name]=$section; |
|
797 | + if( !isset($this->parent->sections[ $name ]) ){ |
|
798 | + $this->parent->sections[ $name ]=$section; |
|
799 | 799 | }; |
800 | 800 | } |
801 | 801 | } |
@@ -814,7 +814,7 @@ discard block |
||
814 | 814 | */ |
815 | 815 | public function htmlEntities( string$input ):string |
816 | 816 | { |
817 | - return htmlentities($input,$this->htsl->getConfig('ENT_flags',$this->docType),$this->htsl->getConfig('charset'),false); |
|
817 | + return htmlentities($input, $this->htsl->getConfig('ENT_flags', $this->docType), $this->htsl->getConfig('charset'), false); |
|
818 | 818 | } |
819 | 819 | |
820 | 820 | /** |
@@ -826,12 +826,12 @@ discard block |
||
826 | 826 | */ |
827 | 827 | protected function setLevel( int$level ):self |
828 | 828 | { |
829 | - $level-= $this->level; |
|
829 | + $level-=$this->level; |
|
830 | 830 | |
831 | 831 | if( $level<=0 ){ |
832 | 832 | $this->closeNodes(-$level); |
833 | 833 | }elseif( $level==1 ){ |
834 | - $this->level+= 1; |
|
834 | + $this->level+=1; |
|
835 | 835 | }else{ |
836 | 836 | $this->throw('Indent error.'); |
837 | 837 | } |
@@ -850,7 +850,7 @@ discard block |
||
850 | 850 | */ |
851 | 851 | protected function openNode( Node$node ):self |
852 | 852 | { |
853 | - array_push($this->openedNodes,$node); |
|
853 | + array_push($this->openedNodes, $node); |
|
854 | 854 | |
855 | 855 | $node->scope and $this->setScope($node); |
856 | 856 | |
@@ -871,13 +871,13 @@ discard block |
||
871 | 871 | if( empty($this->openedNodes) ) return $this; |
872 | 872 | |
873 | 873 | while( $level-->=0 ){ |
874 | - $node= array_pop($this->openedNodes); |
|
874 | + $node=array_pop($this->openedNodes); |
|
875 | 875 | |
876 | 876 | $node->scope and $this->removeScope($node); |
877 | 877 | |
878 | 878 | $closer=$node->close($this->currentLine) and $this->appendLine($closer); |
879 | 879 | |
880 | - $this->level-= $level>=0 ?1:0; |
|
880 | + $this->level-=$level>=0? 1 : 0; |
|
881 | 881 | } |
882 | 882 | |
883 | 883 | return $this; |
@@ -892,7 +892,7 @@ discard block |
||
892 | 892 | */ |
893 | 893 | protected function setScope( Node$scope ):int |
894 | 894 | { |
895 | - return array_unshift($this->scopes,$scope); |
|
895 | + return array_unshift($this->scopes, $scope); |
|
896 | 896 | } |
897 | 897 | |
898 | 898 | /** |
@@ -904,7 +904,7 @@ discard block |
||
904 | 904 | */ |
905 | 905 | public function getScope() |
906 | 906 | { |
907 | - return $this->scopes[0]??null; |
|
907 | + return $this->scopes[ 0 ]??null; |
|
908 | 908 | } |
909 | 909 | |
910 | 910 | /** |
@@ -937,7 +937,7 @@ discard block |
||
937 | 937 | protected function appendLine( string$content ):self |
938 | 938 | { |
939 | 939 | if( false!==$this->indentation ){ |
940 | - $content= str_repeat($this->indentation,$this->level-$this->sectionLevel).$content."\n"; |
|
940 | + $content=str_repeat($this->indentation, $this->level-$this->sectionLevel).$content."\n"; |
|
941 | 941 | } |
942 | 942 | |
943 | 943 | return $this->append($content); |
@@ -984,7 +984,7 @@ discard block |
||
984 | 984 | * |
985 | 985 | * @throw \Htsl\Parser\HtslParsingException |
986 | 986 | */ |
987 | - public function throw( string$message ) |
|
987 | + public function throw(string$message) |
|
988 | 988 | { |
989 | 989 | throw new HtslParsingException("$message at file {$this->buffer->filePath} line $this->lineNumber"); |
990 | 990 | } |