matrix-php-sdk/src/SkeletonClass.php
Ignace Nyamagana Butera 25a47261c3 update skeleton project
2014-10-07 17:35:46 +02:00

27 lines
388 B
PHP

<?php
namespace League\Skeleton;
class SkeletonClass
{
/**
* Create a new Skeleton Instance
*/
public function __construct()
{
}
/**
* Friendly welcome
*
* @param string $phrase Phrase to return
*
* @return string Returns the phrase passed in
*/
public function echoPhrase($phrase)
{
return $phrase;
}
}