matrix-php-sdk/src/SkeletonClass.php

27 lines
388 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
2014-10-07 09:02:20 +00:00
*
2013-08-07 17:33:05 +00:00
* @param string $phrase Phrase to return
2014-10-07 09:02:20 +00:00
*
2013-08-07 17:33:05 +00:00
* @return string Returns the phrase passed in
*/
public function echoPhrase($phrase)
{
return $phrase;
}
}