for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Micheledamo\LaravelWebArtisan;
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(string $phrase): string
return $phrase;