TikiWiki/tiki-manager

View on GitHub
src/Access/Mountable.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
// Copyright (c) 2016, Avan.Tech, et. al.
// Copyright (c) 2008, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.

namespace TikiManager\Access;

interface Mountable
{
    public function mount($target);
    public function umount();
    public function synchronize($source, $mirror, $keepFolderName = false);
}