fix app compliance

This commit is contained in:
2020-01-26 15:37:16 +01:00
parent 2447aea115
commit e03bd71092
6 changed files with 51 additions and 262 deletions

View File

@ -0,0 +1,20 @@
<?php
namespace OCA\OCCWeb\Controller;
use OC\AppFramework\Http\Request;
class FakeRequest extends Request {
public $server = array(
'argv' => ["occ"],
);
/**
* FakeRequest constructor.
*/
public function __construct() {
}
}