PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 2.2
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v2.2
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / classes / Dependencies / League / Container / ContainerAwareInterface.php

ContainerAwareInterface.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 2.2, at classes/Dependencies/League/Container/ContainerAwareInterface.php

41 lines 1016 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php declare(strict_types=1);
2
3 namespace Imagify\Dependencies\League\Container;
4
5 use Imagify\Dependencies\Psr\Container\ContainerInterface;
6
7 interface ContainerAwareInterface
8 {
9 /**
10 * Set a container
11 *
12 * @param ContainerInterface $container
13 *
14 * @return self
15 */
16 public function setContainer(ContainerInterface $container) : ContainerAwareInterface;
17
18 /**
19 * Get the container
20 *
21 * @return ContainerInterface
22 */
23 public function getContainer() : ContainerInterface;
24
25 /**
26 * Set a container. This will be removed in favour of setContainer receiving Container in next major release.
27 *
28 * @param Container $container
29 *
30 * @return self
31 */
32 public function setLeagueContainer(Container $container) : self;
33
34 /**
35 * Get the container. This will be removed in favour of getContainer returning Container in next major release.
36 *
37 * @return Container
38 */
39 public function getLeagueContainer() : Container;
40 }
41