angelcamposm / ping

A Ping package for Laravel
MIT License
56 stars 9 forks source link

Documentation Typo #11

Closed AlexWinder closed 3 years ago

AlexWinder commented 3 years ago

In the documentation quick start it makes reference to the following:

use Acampos\Ping\Ping;
use Acampos\Ping\PingCommandBuilder;

// Create an instance of PingCommand
$command = (new PingCommandBuilder('192.168.1.1'));

// Pass the PingCommand instance to Ping and run...
$ping = (new Ping($command))->run();

However, the namespace of Acampos is incorrect, it should instead be Acamposm. I am happy to provide a pull request for this if required.

angelcamposm commented 3 years ago

oh, thanks, please, submit it. 😅

angelcamposm commented 3 years ago

solved :)

AlexWinder commented 3 years ago

Awesome! Sorry I hadn't yet had chance to create a PR.