| 1 |
<?php // phpcs:ignoreFile -- Bundled third-party (Mozart) dependency; exempt from plugin coding standards. |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { exit; } // Prevent direct file access (output-neutral: emits nothing into the generated container). ?> |
| 3 |
/** |
| 4 |
* This class has been auto-generated by PHP-DI. |
| 5 |
*/ |
| 6 |
class <?=$this->containerClass; ?> extends <?=$this->containerParentClass; ?> |
| 7 |
{ |
| 8 |
const METHOD_MAPPING = <?php var_export($this->entryToMethodMapping); ?>; |
| 9 |
|
| 10 |
<?php foreach ($this->methods as $methodName => $methodContent) : ?> |
| 11 |
protected function <?=$methodName; ?>() |
| 12 |
{ |
| 13 |
<?=$methodContent; ?> |
| 14 |
|
| 15 |
} |
| 16 |
|
| 17 |
<?php endforeach; ?> |
| 18 |
} |
| 19 |
|