php-vfs/src/Node/LinkInterface.php

19 lines
381 B
PHP

<?php
/*
* This file is part of VFS
*
* Copyright (c) 2015 Andrew Lawson <http://adlawson.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Vfs\Node;
interface LinkInterface extends NodeInterface
{
/**
* @return NodeInterface
*/
public function getTarget();
}