mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
Enhancement: Enable function_declaration fixer (#862)
This commit is contained in:
@@ -29,6 +29,7 @@ $config
|
||||
],
|
||||
'constant_case' => true,
|
||||
'elseif' => true,
|
||||
'function_declaration' => true,
|
||||
'increment_style' => [
|
||||
'style' => 'post',
|
||||
],
|
||||
|
||||
@@ -123,7 +123,7 @@ The most commonly searched terms have also been added.
|
||||
TODO: Determine if we want to continue 301 -OR- make these official URLs.
|
||||
******************************************************************************/
|
||||
|
||||
function is_known_ini (string $ini): ?string {
|
||||
function is_known_ini(string $ini): ?string {
|
||||
$inis = [
|
||||
'engine' => 'apache.configuration.php#ini.engine',
|
||||
'short-open-tag' => 'ini.core.php#ini.short-open-tag',
|
||||
@@ -366,7 +366,7 @@ function is_known_variable(string $variable): ?string {
|
||||
return $variables[ltrim($variable, '$')] ?? null;
|
||||
}
|
||||
|
||||
function is_known_term (string $term): ?string {
|
||||
function is_known_term(string $term): ?string {
|
||||
$terms = [
|
||||
'<>' => 'language.operators.comparison.php',
|
||||
'<=>' => 'language.operators.comparison.php',
|
||||
|
||||
@@ -140,7 +140,7 @@ function make_submit($file, $alt = false, $align = false, $extras = false,
|
||||
}
|
||||
|
||||
// Return a hiperlink to something within the site
|
||||
function make_link (string $url, string $linktext = ''): string
|
||||
function make_link(string $url, string $linktext = ''): string
|
||||
{
|
||||
return sprintf("<a href=\"%s\">%s</a>", $url, $linktext ?: $url);
|
||||
}
|
||||
@@ -148,7 +148,7 @@ function make_link (string $url, string $linktext = ''): string
|
||||
// make_popup_link()
|
||||
// return a hyperlink to something, within the site, that pops up a new window
|
||||
//
|
||||
function make_popup_link ($url, $linktext = false, $target = false, $windowprops = "", $extras = false) {
|
||||
function make_popup_link($url, $linktext = false, $target = false, $windowprops = "", $extras = false) {
|
||||
return sprintf("<a href=\"%s\" target=\"%s\" onclick=\"window.open('%s','%s','%s');return false;\"%s>%s</a>",
|
||||
htmlspecialchars($url, ENT_QUOTES | ENT_IGNORE),
|
||||
($target ?: "_new"),
|
||||
|
||||
Reference in New Issue
Block a user