for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rs\VersionEye\Output;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Users.
*
* @author Robert Schönthal <[email protected]>
*/
class Users extends Me
{
* output for the profile API.
* @param OutputInterface $output
* @param array $response
public function show(OutputInterface $output, array $response)
$this->printList($output,
['Fullname', 'Username'],
['fullname', 'username'],
$response
);
}