This commit is contained in:
Reza
2015-10-01 08:23:42 +03:30
commit 3b886684f1
5 changed files with 317 additions and 0 deletions

21
src/helper.php Normal file
View File

@ -0,0 +1,21 @@
<?php
/**
* Created by Reza Salarmehr
* Date: 30/09/2015
* Time: 16:24
*/
use Salarmehr\Ary;
if (!function_exists('ary')) {
/**
* @param mixed $items,...
* @return Ary
*/
function ary()
{
return new Ary(...func_get_args());
}
}