geno/wp-content/plugins/mailpoet/vendor-prefixed/symfony/dependency-injection/ContainerAwareTrait.php
2024-02-01 11:54:18 +00:00

11 lines
260 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;
}
}