yahaay-labs/alternator

A short description of what your package does

v1.0.01 2019-08-27 11:10 UTC

This package is auto-updated.

Last update: 2024-03-29 03:58:50 UTC


README

Alternator

Usage

A quick details regarding the usage of this libary.

use \YahaayLabs\Alternator;

$strMessage = "Hello ";

$service = new Alternator\Service($strMessage);
echo $service->getMessage();
// Hello from Service

$service = new Alternator\Alternator($strMessage);
echo $service->getMessage();
// Hello from Alternator