QrCodeFactoryInterface.php 396 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * (c) Jeroen van den Enden <info@endroid.nl>
  5. *
  6. * This source file is subject to the MIT license that is bundled
  7. * with this source code in the file LICENSE.
  8. */
  9. namespace Endroid\QrCode\Factory;
  10. use Endroid\QrCode\QrCodeInterface;
  11. interface QrCodeFactoryInterface
  12. {
  13. public function create(string $text = '', array $options = []): QrCodeInterface;
  14. }