Doctrine\OrientDB\Graph\Vertex::setPotential PHP Метод

setPotential() публичный Метод

Sets the potential for the vertex, if the vertex has no potential or the one it has is higher than the new one.
public setPotential ( integer $potential, Doctrine\OrientDB\Graph\VertexInterface $from ) : boolean
$potential integer
$from Doctrine\OrientDB\Graph\VertexInterface
Результат boolean
    public function setPotential($potential, VertexInterface $from)
    {
        $potential = (int) $potential;
        if (!$this->getPotential() || $potential < $this->getPotential()) {
            $this->potential = $potential;
            $this->potentialFrom = $from;
            return true;
        }
        return false;
    }