PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Traits
<?php namespace WP_Statistics\Traits; use WP_Statistics\Service\Debugger\Provider\ErrorsDetectorProvider; /** * Trait for handling error logging functionality. * * This trait provides methods for logging errors consistently across classes. * Uses ErrorDetectorProvider to store errors and implements basic caching * to avoid creating multiple provider instances. */ trait ErrorLoggerTrait { /** * Cached instance of ErrorDetectorProvider. * * @var ErrorsDetectorProvider|null */ private static $errorDetector = null; /** * Log errors using ErrorsDetectorProvider * * Logs the most recent PHP error using a cached instance * of ErrorsDetectorProvider to avoid multiple instantiations. * * @return void */ protected static function errorListener() { if (self::$errorDetector === null) { self::$errorDetector = new ErrorsDetectorProvider(); } self::$errorDetector->errorListener(); } }
[-] AjaxUtilityTrait.php
[edit]
[-] TransientCacheTrait.php
[edit]
[-] MigrationAccess.php
[edit]
[-] ErrorLoggerTrait.php
[edit]
[-] ObjectCacheTrait.php
[edit]
[+]
..
[-] WpCacheTrait.php
[edit]