Welcome to mirror list, hosted at ThFree Co, Russian Federation.

if.test « stmt « prettyPrinter « code « test « php-parser « nikic « vendor - github.com/nextcloud/php-static-scanner-instrumentalization.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8debb2ec3837ff10f743eb44720a7136412b042e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if/elseif/else
-----
<?php

if ($expr) {

} elseif ($expr2) {

} else {

}
-----
if ($expr) {
} elseif ($expr2) {
} else {
}