Removing boilerplate code

This commit is contained in:
Yoann Celton 2018-11-28 23:24:20 +11:00 committed by Aryess
parent e78581826a
commit 4cbc6176e4
2 changed files with 0 additions and 40 deletions

View file

@ -1,26 +0,0 @@
<?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;
}
}

View file

@ -1,14 +0,0 @@
<?php
namespace Aryess\PhpMatrixSdk;
class ExampleTest extends \PHPUnit\Framework\TestCase
{
/**
* Test that true does in fact equal true
*/
public function testTrueIsTrue()
{
$this->assertTrue(true);
}
}