選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
282B

  1. <?php
  2. namespace App\Providers;
  3. use App\Validation\Rule\PositiveIntegerRule;
  4. use Framework\App;
  5. class ValidationExtensionsProvider
  6. {
  7. public function bind(App $app): void
  8. {
  9. $app->resolve('validator')->addRule('positive_integer', new PositiveIntegerRule());
  10. }
  11. }

Powered by TurnKey Linux.