Doctrine\OrientDB\Query\Command\Create\Link::with PHP Метод

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

Sets the destination of the link.
public with ( string $class, string $property ) : Link
$class string
$property string
Результат Link
    public function with($class, $property)
    {
        $this->setToken('DestinationClass', $class);
        $this->setToken('DestinationProperty', $property);
        return $this;
    }