PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
awf
/
src
/
Container
<?php /** * @package awf * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 3 or later */ namespace Awf\Container; /** * Interface for objects which are aware of the existence of the Container. * * @since 1.1.0 */ interface ContainerAwareInterface { /** * Set the container instance to the object * * @param Container $container The container instance * * @return void * @since 1.1.0 */ public function setContainer(Container $container): void; }
[+]
..
[-] Container.php
[edit]
[-] ContainerAwareTrait.php
[edit]
[-] ContainerAwareInterface.php
[edit]
[+]
Defaults