diff --git a/src/UnitConverter/Unit/Pressure/Millibar.php b/src/UnitConverter/Unit/Pressure/Millibar.php new file mode 100644 index 00000000..a0694412 --- /dev/null +++ b/src/UnitConverter/Unit/Pressure/Millibar.php @@ -0,0 +1,36 @@ + + * @license MIT + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +declare(strict_types = 1); + +namespace UnitConverter\Unit\Pressure; + +/** + * Millibar unit data class. + * + * @version 1.0.0 + * @since 1.0.0 + * @author Teun Willems + */ +class Millibar extends PressureUnit +{ + protected function configure () : void + { + $this + ->setName("millibar") + + ->setSymbol("mbar") + + ->setUnits(100) + ; + } +} \ No newline at end of file