Skip to content

Files

Latest commit

 

History

History
17 lines (10 loc) · 383 Bytes

WordPressVIPMinimum.Functions.DynamicCalls.md

File metadata and controls

17 lines (10 loc) · 383 Bytes

Pattern: Use of dynamic function call

Issue: -

Description

Enforces that certain functions are not dynamically called. Example:

  $func = 'func_num_args';
  $func();

Further Reading