Skip to content

Commit 53fcb01

Browse files
committed
feat: Added app check methods
1 parent 8b9007e commit 53fcb01

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "x-wp/di",
3-
"description": "Provides standardized way to declare and invoke WordPress hooks",
3+
"description": "The dependency injection container for WordPress",
44
"license": "GPL-2.0-only",
55
"type": "library",
66
"keywords": [

src/App_Factory.php

+12-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
/**
1515
* Create and manage DI containers.
1616
*
17-
* @method static Container create( array $config) Create a new container.
17+
* @method static bool has( string $id) Check if a container exists.
1818
* @method static Container get( string $id ) Get a container instance.
19+
* @method static Container create( array $config) Create a new container.
1920
* @method static void extend( string $container, array $module, string $position, ?string $target ) Extend an application container definition.
2021
* @method static bool decompile( string $id, bool $now ) Decompile a container.
2122
*/
@@ -88,6 +89,16 @@ static function ( array $imports, string $classname ) use( $module, $position, $
8889
);
8990
}
9091

92+
/**
93+
* Check if a container exists.
94+
*
95+
* @param string $id Container ID.
96+
* @return bool
97+
*/
98+
protected function call_has( string $id ): bool {
99+
return isset( $this->containers[ $id ] );
100+
}
101+
91102
/**
92103
* Get a container instance.
93104
*

src/Functions/xwp-di-container-fns.php

+10
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@
88

99
use DI\Container;
1010

11+
/**
12+
* Check if a container exists.
13+
*
14+
* @param string $container_id Container ID.
15+
* @return bool
16+
*/
17+
function xwp_has( string $container_id ): bool {
18+
return \XWP\DI\App_Factory::has( $container_id );
19+
}
20+
1121
/**
1222
* Get a container by ID.
1323
*

0 commit comments

Comments
 (0)