matrix-php-sdk/src/SkeletonClass.php

27 lines
419 B
PHP
Raw Normal View History

2013-08-07 17:33:05 +00:00
<?php
2018-11-27 11:01:37 +00:00
namespace Aryess\PhpMatrixSdk;
2013-08-07 17:33:05 +00:00
class SkeletonClass
{
/**
* Create a new Skeleton Instance
*/
public function __construct()
{
2015-03-25 20:17:39 +00:00
// constructor body
2013-08-07 17:33:05 +00:00
}
/**
* 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;
}
}