Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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