Closed mihaeu closed 8 years ago
The following types of *explicit dependencies (i.e. no dynamic new $$$$var();) should be detected:
new $$$$var();
<<create>>
new X()
<<call>>
Questions:
$_POST
$_GLOBALS
Added support for Singleton in 22b6f1c and all the other explicit dependencies require having a closer look at variable scope (which I'm going to push off until the next milestone).
The following types of *explicit dependencies (i.e. no dynamic
new $$$$var();
) should be detected:<<create>>
dependencies (i.e.new X()
)<<call>>
dependencies to globals and static dependencies<<call>>
dependencies to injected dependencies (either through constructor or method injection)Questions:
$_POST
relevant ($_GLOBALS
is, but will not be supported in the alpha version)?