mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:47:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			998 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			998 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Listeners;
 | 
						|
 | 
						|
use Illuminate\Broadcasting\InteractsWithSockets;
 | 
						|
use Illuminate\Foundation\Events\Dispatchable;
 | 
						|
use Illuminate\Http\Client\Events\RequestSending;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
class LogRequestSending
 | 
						|
{
 | 
						|
    use Dispatchable;
 | 
						|
    use InteractsWithSockets;
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create the event listener.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct()
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    public function handle(RequestSending $event)
 | 
						|
    {
 | 
						|
        nlog("Request");
 | 
						|
        nlog($event->request->headers());
 | 
						|
        nlog($event->request->url());
 | 
						|
        nlog(json_encode($event->request->headers()));
 | 
						|
        nlog($event->request->body());
 | 
						|
 | 
						|
    }
 | 
						|
}
 |