|
1
|
<?php |
|
2
|
|
|
3
|
namespace CommerceBird\Admin\Mappings; |
|
4
|
|
|
5
|
if ( ! defined( 'ABSPATH' ) ) { |
|
6
|
exit; |
|
7
|
} |
|
8
|
|
|
9
|
final class ReconcileResult { |
|
10
|
|
|
11
|
public function __construct( |
|
12
|
public readonly int $hard_deleted_auto_rows, |
|
13
|
public readonly int $orphaned_manual_rows |
|
14
|
) {} |
|
15
|
} |
|
16
|
|