Serafim

Untitled

Feb 11th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. class TimeInterval
  2. {
  3.   public function __construct($seconds){ *** }
  4.  
  5.   public function addSeconds($count){ ***** += $count; }
  6.   public function addMinutes($count){ ***** += $count * 60; }
  7.   public function addHours($count){ ***** += $count * 60 * 60; }
  8.  
  9.   public function getSeconds(){ *** }
  10.   public function getMinutes(){ *** }
  11.   public function getHours(){ *** }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment