golden hour
/var/www/html/wp-content/plugins/woocommerce/src/Internal/DependencyManagement
⬆️ Go Up
Upload
File/Folder
Size
Actions
AbstractServiceProvider.php
7.12 KB
Del
OK
ContainerException.php
682 B
Del
OK
Definition.php
1.12 KB
Del
OK
ExtendedContainer.php
5.94 KB
Del
OK
ServiceProviders
-
Del
OK
Edit: ContainerException.php
<?php /** * ExtendedContainer class file. */ namespace Automattic\WooCommerce\Internal\DependencyManagement; /** * Class ContainerException. * Used to signal error conditions related to the dependency injection container. */ class ContainerException extends \Exception { /** * Create a new instance of the class. * * @param null $message The exception message to throw. * @param int $code The error code. * @param Exception|null $previous The previous throwable used for exception chaining. */ public function __construct( $message = null, $code = 0, Exception $previous = null ) { parent::__construct( $message, $code, $previous ); } }
Save