<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\ServiceChannel;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait availableChannelTrait {
|
/**
|
* @var ServiceChannel A means of accessing the service (e.g. a phone bank, a web site, a location, etc.).
|
*/
|
protected ServiceChannel $availableChannel;
|
|
public function getAvailableChannel():?ServiceChannel
|
{
|
return $this->availableChannel??null;
|
}
|
public function setAvailableChannel(ServiceChannel $availableChannel):void
|
{
|
$this->availableChannel = $availableChannel;
|
}
|
}
|