22 lines
265 B
PHP
22 lines
265 B
PHP
<?php
|
|
|
|
namespace App\Library\Timer;
|
|
|
|
/**
|
|
* This library performs some of the calculations needed to be done
|
|
* repeatedly for the timer board.
|
|
*/
|
|
|
|
//Internal Libraries
|
|
use DB;
|
|
use Log;
|
|
use Carbon\Carbon;
|
|
|
|
//Models
|
|
|
|
|
|
//Application Libraries
|
|
|
|
class TimerHelper {
|
|
|
|
} |