Ajax.php 245 B

123456789101112
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2015 Christian Kampka <christian@kampka.net>
  4. * SPDX-License-Identifier: MIT
  5. */
  6. namespace OC\Core\Command\Background;
  7. class Ajax extends Base {
  8. protected function getMode(): string {
  9. return 'ajax';
  10. }
  11. }