国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

31 рядки
542B

  1. <?php
  2. if (!defined('DEDEINC')) exit('dedebiz');
  3. /*
  4. * This file is part of Crawler Detect - the web crawler detection library.
  5. *
  6. * (c) Mark Beech <m@rkbee.ch>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. abstract class AbstractProvider
  12. {
  13. /**
  14. * The data set.
  15. *
  16. * @var array
  17. */
  18. protected $data;
  19. /**
  20. * Return the data set.
  21. *
  22. * @return array
  23. */
  24. public function getAll()
  25. {
  26. return $this->data;
  27. }
  28. }