You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

publicemitter.php 470B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace OC\Hooks;
  9. class PublicEmitter extends BasicEmitter {
  10. /**
  11. * @param string $scope
  12. * @param string $method
  13. * @param array $arguments optional
  14. */
  15. public function emit($scope, $method, $arguments = array()) {
  16. parent::emit($scope, $method, $arguments);
  17. }
  18. }