diff --git a/src/SkeletonClass.php b/src/SkeletonClass.php index 67a829c..85851fe 100644 --- a/src/SkeletonClass.php +++ b/src/SkeletonClass.php @@ -7,8 +7,7 @@ class SkeletonClass /** * Create a new Skeleton Instance */ - public function __construct() - { + public function __construct(){ // constructor body } @@ -19,8 +18,7 @@ public function __construct() * * @return string Returns the phrase passed in */ - public function echoPhrase($phrase) - { + public function echoPhrase($phrase){ return $phrase; } }