for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Ping for Laravel.
*
* This class makes Ping request to a host.
* Ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway.
* @author Angel Campos <[email protected]>
* @requires PHP 8.0
* @version 2.1.2
*/
namespace Acamposm\Ping\Facades;
use Illuminate\Support\Facades\Facade;
class PingFacade extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor(): string
return 'ping';
}