matrix-php-sdk/src/League/Skeleton/SkeletonClass.php

26 lines
375 B
PHP
Raw Normal View History

2013-08-07 17:33:05 +00:00
<?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;
}
}