for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace HelloWorld\Models;
use LunixREST\Response\ResponseData;
class HelloWorld implements ResponseData {
protected $helloWorld = "HelloWorld";
/**
* @return array
*/
public function getAsAssociativeArray(): array {
return [
"helloworld" => $this->helloWorld
];
}