jean-pierregassin/hello-world

A package that is able to echo hello 'argument' (optional)

0.0.3 2016-05-27 03:40 UTC

This package is not auto-updated.

Last update: 2024-04-13 16:56:58 UTC


README

A package that says hello world

Installation

Install this package via composer

composer require jean-pierregassin/hello-world

Usage

<?php

use Jean_PierreGassin\HelloWorld\HelloWorld;

$helloWorld = new HelloWorld();
$helloWorld->setName('Me');

$helloWorld->say();
// prints 'Hello Me!'