PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.3.53
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.3.53
1.4.17 1.4.16 1.4.15 1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 All 180 releases
disco / vendor / micropackage / requirements / src / Interfaces / Checkable.php

Checkable.php in Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO 1.3.53, at vendor/micropackage/requirements/src/Interfaces/Checkable.php

33 lines 457 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Checkable interface
4 *
5 * @package micropackage/requirements
6 */
7
8 namespace Micropackage\Requirements\Interfaces;
9
10 /**
11 * Checkable interface
12 */
13 interface Checkable {
14
15 /**
16 * Gets checker name
17 *
18 * @since 1.0.0
19 * @return string
20 */
21 public function get_name();
22
23 /**
24 * Checks if the requirement is met
25 *
26 * @since 1.0.0
27 * @param mixed $value Value to check against.
28 * @return void
29 */
30 public function check( $value );
31
32 }
33