国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

31 lines
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. }