ErrorPush.php 201 B

12345678910111213
  1. <?php
  2. namespace App\Components;
  3. trait ErrorPush
  4. {
  5. public function push(string $path, string $title, string $content)
  6. {
  7. app("ErrorPushService")->push($path,$title,$content);
  8. }
  9. }