47 lines
1004 B
PHP
47 lines
1004 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Timesheet;
|
|
|
|
final class Rate
|
|
{
|
|
private float $rate;
|
|
private float $internalRate;
|
|
private ?float $hourlyRate;
|
|
private ?float $fixedRate;
|
|
|
|
public function __construct(float $rate, float $internalRate, ?float $hourlyRate = null, ?float $fixedRate = null)
|
|
{
|
|
$this->rate = $rate;
|
|
$this->internalRate = $internalRate;
|
|
$this->fixedRate = $fixedRate;
|
|
$this->hourlyRate = $hourlyRate;
|
|
}
|
|
|
|
public function getRate(): float
|
|
{
|
|
return $this->rate;
|
|
}
|
|
|
|
public function getInternalRate(): float
|
|
{
|
|
return $this->internalRate;
|
|
}
|
|
|
|
public function getFixedRate(): ?float
|
|
{
|
|
return $this->fixedRate;
|
|
}
|
|
|
|
public function getHourlyRate(): ?float
|
|
{
|
|
return $this->hourlyRate;
|
|
}
|
|
}
|