__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Automattic\WooCommerce\Admin\RemoteSpecs;
/**
* RemoteSpecsEngine class.
*/
abstract class RemoteSpecsEngine {
/**
* Log errors.
*
* @param array $errors Array of errors from \Throwable interface.
*/
public static function log_errors( $errors = array() ) {
if (
true !== defined( 'WP_ENVIRONMENT_TYPE' ) ||
! in_array( constant( 'WP_ENVIRONMENT_TYPE' ), array( 'development', 'local' ), true )
) {
return;
}
$logger = wc_get_logger();
$error_messages = array();
foreach ( $errors as $error ) {
if ( isset( $error ) && method_exists( $error, 'getMessage' ) ) {
$error_messages[] = $error->getMessage();
}
}
$logger->error(
'Error while evaluating specs',
array(
'source' => 'remotespecsengine-errors',
'class' => static::class,
'errors' => $error_messages,
),
);
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| RuleProcessors | Folder | 0775 |
|
|
| DataSourcePoller.php | File | 7.27 KB | 0664 |
|
| RemoteSpecsEngine.php | File | 864 B | 0664 |
|