for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: harrisonchow
* Date: 8/17/16
* Time: 3:29 PM
*/
namespace NobodyRandom\NobAPI;
* A terribly useful class
*
* See: http://knpuniversity.com/screencast/question-answer-day
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;