| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Modules\AtomicWidgets\CssConverter\Metrics; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; // Exit if accessed directly. |
| 7 |
} |
| 8 |
|
| 9 |
/** |
| 10 |
* Default no-op reporter. Real telemetry (channel, payload, PII policy) is deferred to Phase 4. |
| 11 |
*/ |
| 12 |
class Null_Failure_Reporter implements Conversion_Failure_Reporter { |
| 13 |
public function report( string $property, string $category, array $context ): void { |
| 14 |
} |
| 15 |
} |
| 16 |
|