File "OnboardingShouldShowAlwaysStrategy.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/octolize/wp-onboarding/src/Onboarding/OnboardingShouldShowAlwaysStrategy.php
File size: 286 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @package Octolize\Onboarding
*/
namespace FSVendor\Octolize\Onboarding;
/**
* Always display strategy.
*/
class OnboardingShouldShowAlwaysStrategy implements OnboardingShouldShowStrategy
{
public function should_display(): bool
{
return \true;
}
}