PhpDocReaderManager.php 588 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace Hyperf\CodeParser;
  12. use PhpDocReader\PhpDocReader;
  13. class PhpDocReaderManager
  14. {
  15. protected static ?PhpDocReader $instance = null;
  16. public static function getInstance(): PhpDocReader
  17. {
  18. if (static::$instance) {
  19. return static::$instance;
  20. }
  21. return static::$instance = new PhpDocReader();
  22. }
  23. }