oont-contents/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-show-decision/src/ConstantDefinedStrategy.php
2025-02-08 15:10:23 +01:00

19 lines
371 B
PHP

<?php
namespace FSVendor\WPDesk\ShowDecision;
class ConstantDefinedStrategy implements ShouldShowStrategy
{
/**
* @var string
*/
private string $constant;
public function __construct(string $constant)
{
$this->constant = $constant;
}
public function shouldDisplay(): bool
{
return defined($this->constant);
}
}