set days of week using bitwise operators

This commit is contained in:
Nabeel Shahzad
2017-08-16 08:29:05 -05:00
parent 073af3e949
commit 6b20ea6f16
3 changed files with 47 additions and 0 deletions

13
tests/UtilsTest.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use App\Facades\Utils;
class UtilsTest extends TestCase
{
public function setUp() {
}
public function testSecondsToTime() {
print_r(Utils::secondsToTime(3600));
}
}