php-juicer/src/Ingredient/NicotineBase.php

25 lines
348 B
PHP

<?php
namespace NoccyLabs\Juicer\Ingredient;
class NicotineBase
{
protected $base;
protected $strength;
public function __construct(Base $base, int $strength)
{
$this->base = $base;
$this->nicotineStrength = $strength;
}
public function getSpecificGravity(): float
{
return 0.0;
}
}