for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tacone\Bees\Helper;
class ArrayHelper
{
public static function undot($array)
$result = [];
foreach ($array as $key => $value) {
array_set($result, $key, $value);
}
return $result;