Skip to content

Commit 290e8a0

Browse files
authored
Merge pull request #4 from chadicus/master
fix phpdoc
2 parents 2dba30a + c637b7b commit 290e8a0

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

src/Seconds.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ abstract class Seconds
4040
const YEAR_IN_SECONDS = self::DAY_IN_SECONDS * 365;
4141

4242
/**
43-
* Returns the given number of minutes represented in minutes.
43+
* Returns the given number of minutes represented in seconds.
4444
*
4545
* @param int $minutes The value to covert to minutes.
4646
*
@@ -52,9 +52,9 @@ public static function inMinutes(int $minutes) : int
5252
}
5353

5454
/**
55-
* Returns the given number of hours represented in minutes.
55+
* Returns the given number of hours represented in seconds.
5656
*
57-
* @param int $hours The value to covert to minutes.
57+
* @param int $hours The value to covert to seconds.
5858
*
5959
* @return int
6060
*/
@@ -64,9 +64,9 @@ public static function inHours(int $hours) : int
6464
}
6565

6666
/**
67-
* Returns the given number of days represented in minutes.
67+
* Returns the given number of days represented in seconds.
6868
*
69-
* @param int $days The value to covert to minutes.
69+
* @param int $days The value to covert to seconds.
7070
*
7171
* @return int
7272
*/
@@ -76,9 +76,9 @@ public static function inDays(int $days) : int
7676
}
7777

7878
/**
79-
* Returns the given number of weeks represented in minutes.
79+
* Returns the given number of weeks represented in seconds.
8080
*
81-
* @param int $weeks The value to covert to minutes.
81+
* @param int $weeks The value to covert to seconds.
8282
*
8383
* @return int
8484
*/
@@ -88,9 +88,9 @@ public static function inWeeks(int $weeks) : int
8888
}
8989

9090
/**
91-
* Returns the given number of months represented in minutes.
91+
* Returns the given number of months represented in seconds.
9292
*
93-
* @param int $months The value to covert to minutes.
93+
* @param int $months The value to covert to seconds.
9494
*
9595
* @return int
9696
*/
@@ -100,9 +100,9 @@ public static function inMonths(int $months) : int
100100
}
101101

102102
/**
103-
* Returns the given number of years represented in minutes.
103+
* Returns the given number of years represented in seconds.
104104
*
105-
* @param int $years The value to covert to minutes.
105+
* @param int $years The value to covert to seconds.
106106
*
107107
* @return int
108108
*/

0 commit comments

Comments
 (0)