<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait monthsOfExperienceTrait {
|
/**
|
* @var int Indicates the minimal number of months of experience required for a position.
|
*/
|
protected int $monthsOfExperience;
|
|
public function getMonthsOfExperience():?int
|
{
|
return $this->monthsOfExperience??null;
|
}
|
public function setMonthsOfExperience(int $monthsOfExperience):void
|
{
|
$this->monthsOfExperience = $monthsOfExperience;
|
}
|
}
|