mirror of
https://github.com/silverstripe/doc.silverstripe.org
synced 2024-10-22 17:05:50 +02:00
6604109f31
- GitMarkdownUpdater - SVNMarkdonUpdater Add logging for errors to SS_Log Secure escaping of shell arguments and error detection
13 lines
221 B
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);
|
|
}
|