PluginProbe
ElasticPress / 5.3.5
ElasticPress v5.3.5
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
← All changes | includes/classes/Container.php +3 -3 5.0.15.3.5 View file →
@@ -8,11 +8,11 @@
8 8 */
9 9
10 10 namespace ElasticPress;
11 11
12 -use \ElasticPress\Vendor_Prefixed\Psr\Container\ContainerInterface;
12 +use ElasticPress\Vendor_Prefixed\Psr\Container\ContainerInterface;
13 13
14 -use \ElasticPress\Exception\NotFoundException;
14 +use ElasticPress\Exception\NotFoundException;
15 15
16 16 /**
17 17 * PSR11 compliant container class
18 18 */
@@ -48,9 +48,9 @@
48 48 * @param string $id Identifier of the entry to look for.
49 49 *
50 50 * @return bool
51 51 */
52 - public function has( $id ) : bool {
52 + public function has( $id ): bool {
53 53 return isset( $this->instances[ $id ] );
54 54 }
55 55
56 56 /**