12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- namespace OC\IntegrityCheck\Helpers;
- class EnvironmentHelper {
-
- public function getServerRoot(): string {
- return rtrim(\OC::$SERVERROOT, '/');
- }
-
- public function getChannel(): string {
- return \OC_Util::getChannel();
- }
- }
|