ErrorPush.php 138 B

12345678910
  1. <?php
  2. namespace App\Interfaces;
  3. interface ErrorPush
  4. {
  5. public function push(string $path, string $title, string $content): bool;
  6. }