Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

DocumentNumber.php 339B

123456789101112
  1. <?php
  2. namespace App\Interfaces\Utility;
  3. use Illuminate\Database\Eloquent\Model;
  4. interface DocumentNumber
  5. {
  6. public function getNextNumber(?Model $model, ?string $type, int | string $number, string $prefix, int | string $digits, ?bool $padded = true): string;
  7. public function incrementNumber(Model $model, string $type): void;
  8. }