oont-contents/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/ContainerAwareTrait.php
2025-02-08 15:10:23 +01:00

11 lines
261 B
PHP

<?php
namespace MailPoetVendor\Symfony\Component\DependencyInjection;
if (!defined('ABSPATH')) exit;
trait ContainerAwareTrait
{
protected $container;
public function setContainer(?ContainerInterface $container = null)
{
$this->container = $container;
}
}