11 lines
169 B
PHP
11 lines
169 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace OpenCloud\integration;
|
||
|
|
||
|
interface SampleManagerInterface
|
||
|
{
|
||
|
public function write($path, array $replacements);
|
||
|
|
||
|
public function deletePaths();
|
||
|
}
|