DependencyInjection.php 291 B

123456789101112131415161718
  1. <?php
  2. namespace Mpociot\ApiDoc\Tests\Fixtures;
  3. use Illuminate\Contracts\Filesystem\Filesystem;
  4. class DependencyInjection
  5. {
  6. /**
  7. * @var
  8. */
  9. private $filesystem;
  10. public function __construct(Filesystem $filesystem)
  11. {
  12. $this->filesystem = $filesystem;
  13. }
  14. }