| 1 | <?php |
||
| 10 | abstract class AbstractMacroVariable |
||
| 11 | { |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var DocuScope |
||
| 15 | */ |
||
| 16 | protected $docuScope; |
||
| 17 | |||
| 18 | |||
| 19 | public function __construct(DocuScope $docuScope) |
||
| 23 | |||
| 24 | |||
| 25 | /** |
||
| 26 | * @throws DocuGeneratorException |
||
| 27 | */ |
||
| 28 | public function runMacro( |
||
| 36 | |||
| 37 | |||
| 38 | abstract protected function runVariableMacro(string & $content): void; // Intentionally & |
||
| 39 | } |
||
| 40 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.