FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
tools/prepare_phpstan.php at main · mintyphp/tools · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
mintyphp
/
tools
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
tools
/
prepare_phpstan.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
97 lines (89 loc) · 3.61 KB
Breadcrumbs
tools
/
prepare_phpstan.php
Copy path
File metadata and controls
97 lines (89 loc) · 3.61 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
function
createDocBlock
(
array
$
variables
):
string
{
if
(!
$
variables
)
return
''
;
$
docBlock
=
"
/**
\n"
;
foreach
(
$
variables
as
$
name
=>
$
type
) {
$
docBlock
.=
"
* @var
$
type
$
name
\n"
;
}
$
docBlock
.=
"
*/
\n\n"
;
return
$
docBlock
;
}
function
replaceFirstDocBlock
(
string
$
filename
,
array
$
variables
):
bool
{
$
file
=
file_get_contents
(
$
filename
);
$
docBlock
=
createDocBlock
(
$
variables
);
if
(!
preg_match
(
'
|^\s*<\?php|s
'
,
$
file
)) {
$
file
=
"
<?php
\n
?>
\n"
.
$
file
;
}
$
file
=
preg_replace
(
'
|<\?php(\s*/\*\*(.*?)\*/)?\s*|s
'
,
"
<?php
\n\n"
.
$
docBlock
,
$
file
,
1
);
return
file_put_contents
(
$
filename
,
$
file
) ?
true
:
false
;
}
function
getPathVariablesFromFilename
(
string
$
filename
):
array
{
$
filename
=
str_replace
(
'\\'
,
'
/
'
,
$
filename
);
$
path
=
explode
(
'
/
'
,
$
filename
);
if
(!
preg_match
(
'
/^([^\(]*)\((.*)\).php$/
'
,
array_pop
(
$
path
),
$
matches
)) {
return
[];
}
return
array_fill_keys
(
array_filter
(
explode
(
'
,
'
,
$
matches
[
2
])),
'
string|null
'
);
}
function
getViewVariablesFromFileContent
(
string
$
filename
):
array
{
$
viewVariables
= [];
$
actionFile
=
file_get_contents
(
$
filename
);
$
tokens
=
token_get_all
(
$
actionFile
);
$
tokens
=
array_merge
(
array_filter
(
$
tokens
,
function
(
$
token
) {
return
$
token
[
0
] !=
T_WHITESPACE
;
}));
foreach
(
$
tokens
as
$
i
=>
$
current
) {
$
previous
=
$
tokens
[
$
i
-
1
] ??
''
;
$
next
=
$
tokens
[
$
i
+
1
] ??
''
;
if
(
is_array
(
$
current
) &&
$
current
[
0
] ==
T_VARIABLE
&&
$
next
==
'
=
'
&& (
$
previous
[
0
] ??
0
) !=
T_DOUBLE_COLON
) {
$
viewVariables
[
$
current
[
1
]] =
'
mixed|null
'
;
}
}
return
$
viewVariables
;
}
function
getViewFilenamesFromFilename
(
string
$
filename
):
array
{
$
start
=
strrpos
(
$
filename
,
'
/
'
) +
1
;
$
end
=
strpos
(
$
filename
,
'
(
'
,
$
start
);
$
action
=
substr
(
$
filename
,
$
start
,
$
end
-
$
start
);
return
glob
(
substr
(
$
filename
,
0
,
$
start
) .
$
action
.
'
(*).phtml
'
);
}
function
getTemplateFilenameFromViewFilename
(
string
$
filename
):
string
{
$
start
=
strrpos
(
$
filename
,
'
(
'
) +
1
;
$
end
=
strpos
(
$
filename
,
'
)
'
,
$
start
);
$
template
=
substr
(
$
filename
,
$
start
,
$
end
-
$
start
);
$
directory
=
str_replace
(
'
pages
'
,
'
templates
'
,
explode
(
'
/
'
,
$
filename
)[
0
]);
return
"
$
directory
/
$
template
.php
"
;
}
function
scanDirectories
(
$
glob
)
{
$
templateViews
= [];
$
directories
=
glob
(
$
glob
,
GLOB_ONLYDIR
);
foreach
(
$
directories
as
$
directory
) {
scanDirectories
(
"
$
directory
/*
"
);
$
filenames
=
glob
(
"
$
directory
/*(*).php
"
);
foreach
(
$
filenames
as
$
filename
) {
$
pathVariables
=
getPathVariablesFromFilename
(
$
filename
);
$
viewVariables
=
getViewVariablesFromFileContent
(
$
filename
);
$
viewFilenames
=
getViewFilenamesFromFilename
(
$
filename
);
$
templateVariables
= [];
foreach
(
$
viewFilenames
as
$
viewFilename
) {
$
templateFilename
=
getTemplateFilenameFromViewFilename
(
$
viewFilename
);
$
templateViewFilename
=
preg_replace
(
'
|\.php$|
'
,
'
.phtml
'
,
$
templateFilename
);
$
templateVariables
+=
file_exists
(
$
templateFilename
) ?
getViewVariablesFromFileContent
(
$
templateFilename
) : [];
if
(
$
templateVariables
&& !
isset
(
$
templateViews
[
$
templateViewFilename
])) {
replaceFirstDocBlock
(
$
templateViewFilename
,
$
templateVariables
);
$
templateViews
[
$
templateViewFilename
] =
true
;
}
replaceFirstDocBlock
(
$
viewFilename
,
$
pathVariables
+
$
viewVariables
+
$
templateVariables
);
}
replaceFirstDocBlock
(
$
filename
,
$
pathVariables
+
$
templateVariables
);
}
}
}
scanDirectories
(
"
pages*
"
);
Back
|
FazBrowse Home
|
New Git URL