您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DocumentNumber.php 330B

123456789101112
  1. <?php
  2. namespace App\Contracts;
  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. }