From 9987dedabb18f1b9fbc90cb76056a19aa98d6989 Mon Sep 17 00:00:00 2001 From: Prateek Karki Date: Mon, 24 Dec 2018 12:16:39 +0545 Subject: [PATCH] add tag --- src/SkeletonClass.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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; } }