for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OfxParser\Entities\Investment\Transaction\Traits;
use SimpleXMLElement;
trait SellType
{
/**
* Type of sell. SELL, SELLSHORT
* @var string
*/
public $sellType;
* @param SimpleXMLElement $node
* @return $this for chaining
protected function loadSellType(SimpleXMLElement $node)
$this->sellType = (string) $node->SELLTYPE;
return $this;
}