You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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