jean-pierregassin/hello-world

一个能够输出'argument'(可选)的'hello'包

0.0.3 2016-05-27 03:40 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:04:10 UTC


README

一个输出hello world的包

安装

通过composer安装此包

composer require jean-pierregassin/hello-world

用法

<?php

use Jean_PierreGassin\HelloWorld\HelloWorld;

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

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