PluginProbe
WP Popular Posts / 7.4.2
WP Popular Posts v7.4.2
7.4.2 7.4.1 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 5.0.0 5.0.1 5.0.2 5.1.0 5.2.0 5.2.1 5.2.2 5.2.3 5.2.4 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 All 93 releases
wordpress-popular-posts / src / Container / ContainerConfigurationInterface.php
ContainerConfigurationInterface.php
18 lines 343 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Contract to modify the DIC.
4 */
5
6 namespace WordPressPopularPosts\Container;
7
8 interface ContainerConfigurationInterface
9 {
10 /**
11 * Modifies the given dependency injection container.
12 *
13 * @since 5.0.0
14 * @param Container $container
15 */
16 public function modify(Container $container);
17 }
18