Add more front-end controllers, language file cleanup

This commit is contained in:
Dane Everitt 2017-09-03 16:32:52 -05:00
parent 4532811fcd
commit 54554465f2
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
59 changed files with 1100 additions and 336 deletions

View file

@ -31,6 +31,8 @@ interface FileRepositoryInterface extends BaseRepositoryInterface
*
* @param string $path
* @return object
*
* @throws \GuzzleHttp\Exception\RequestException
*/
public function getFileStat($path);
@ -39,6 +41,8 @@ interface FileRepositoryInterface extends BaseRepositoryInterface
*
* @param string $path
* @return object
*
* @throws \GuzzleHttp\Exception\RequestException
*/
public function getContent($path);
@ -48,6 +52,8 @@ interface FileRepositoryInterface extends BaseRepositoryInterface
* @param string $path
* @param string $content
* @return \Psr\Http\Message\ResponseInterface
*
* @throws \GuzzleHttp\Exception\RequestException
*/
public function putContent($path, $content);
@ -56,6 +62,8 @@ interface FileRepositoryInterface extends BaseRepositoryInterface
*
* @param string $path
* @return array
*
* @throws \GuzzleHttp\Exception\RequestException
*/
public function getDirectory($path);
}