for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sergiors\Functional;
/**
* @author Sérgio Rafael Siqueira <[email protected]>
*
* @param array $ls
* @return array
*/
function head(array $ls)
{
return array_shift($ls);
}