matrix-php-sdk/src/SkeletonClass.php
2022-06-23 21:20:33 +10:00

27 lines
419 B
PHP

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