Scalr\Upgrade\EntityChangesIterator::__construct PHP Method

__construct() public method

Constructor
public __construct ( EntityPropertiesIterator $iterator )
$iterator EntityPropertiesIterator An entity properties iterator
    public function __construct(EntityPropertiesIterator $iterator)
    {
        parent::__construct($iterator);
        $this->position = 0;
        $pk = $iterator->getEntity()->getPrimaryKey();
        $this->new = !$iterator->getEntity()->getActual()->{$pk};
    }