<?php
|
namespace JVBase\managers\SEO\render\Traits\_Properties;
|
|
use JVBase\managers\SEO\render\Thing\Thing;
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
trait instrumentTrait {
|
/**
|
* @var Thing The object that helped the agent perform the action. E.g. John wrote a book with a pen.
|
*/
|
protected Thing $instrument;
|
|
public function getInstrument():?Thing
|
{
|
return $this->instrument??null;
|
}
|
public function setInstrument(Thing $instrument):void
|
{
|
$this->instrument = $instrument;
|
}
|
}
|