10 lines
169 B
PHP
Executable file
10 lines
169 B
PHP
Executable file
<?php
|
|
|
|
namespace OpenCloud\Integration;
|
|
|
|
interface SampleManagerInterface
|
|
{
|
|
public function write($path, array $replacements);
|
|
|
|
public function deletePaths();
|
|
}
|