| 1 |
<?php |
| 2 |
|
| 3 |
namespace Elementor\Core\Isolation; |
| 4 |
|
| 5 |
if ( ! defined( 'ABSPATH' ) ) { |
| 6 |
exit; |
| 7 |
} |
| 8 |
|
| 9 |
interface Elementor_Counter_Adapter_Interface { |
| 10 |
public function get_count( $key ) : ?int; |
| 11 |
|
| 12 |
public function set_count( $key, $count = 0 ) : void; |
| 13 |
|
| 14 |
public function increment( $key ) : void; |
| 15 |
|
| 16 |
public function is_key_allowed( $key ) : bool; |
| 17 |
} |
| 18 |
|