Skip to content

Commit 1d38a52

Browse files
committed
Merge branch 'godbout-master' into dev
* Pull Request #3
1 parent 744613d commit 1d38a52

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

src/phpf.php

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ public function upsert( $target, $filename, $content ) {}
14101410

14111411
}
14121412

1413-
define( 'VERSION', 'version_code' );
1413+
define( 'VERSION', '19.7.4' );
14141414

14151415
function extractFromArgv( $argv, $item ) {
14161416
return array_values(
@@ -11622,26 +11622,6 @@ public function format( $source ) {
1162211622
case T_CONSTANT_ENCAPSED_STRING:
1162311623
$this->appendCode( $text );
1162411624
break;
11625-
case T_COMMENT:
11626-
$isComment = false;
11627-
if (
11628-
! $this->leftUsefulTokenIs( [T_OPEN_TAG] ) &&
11629-
$this->rightTokenIs( [
11630-
T_IF,
11631-
T_DO,
11632-
T_FOR,
11633-
T_FOREACH,
11634-
T_SWITCH,
11635-
T_WHILE,
11636-
T_COMMENT,
11637-
T_DOC_COMMENT,
11638-
] )
11639-
) {
11640-
$this->appendCode( $this->newLine );
11641-
$isComment = true;
11642-
}
11643-
$this->appendCode( $text );
11644-
break;
1164511625
case T_IF:
1164611626
case T_DO:
1164711627
case T_FOR:

0 commit comments

Comments
 (0)