-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a61490
commit 5be4fe3
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,17 +18,17 @@ | |
use UnitConverter\Unit\{ AbstractUnit, UnitInterface }; | ||
|
||
/** | ||
* Kilometer per hour unit data class. | ||
* Kilometre per hour unit data class. | ||
* | ||
* @version 1.0.0 | ||
* @since 1.0.0 | ||
* @author Jordan Brauer <[email protected]> | ||
*/ | ||
class KilometerPerHour extends SpeedUnit | ||
class KilometrePerHour extends SpeedUnit | ||
{ | ||
protected $name = "kilometer per hour"; | ||
protected $name = "kilometre per hour"; | ||
|
||
protected $symbol = "kph"; | ||
|
||
protected $units = 0.44704; | ||
protected $units = 0.277778; | ||
} |