doc.silverstripe.org/app/code/updaters/MarkdownUpdater.php

13 lines
221 B
PHP

<?php
interface MarkdownUpdater {
/**
* @param string $repo
* @param string $path
* @param string $branch
* @return array List of any errors that occurred
*/
public function update($repo, $path, $branch);
}