30 lines
705 B
PHP
30 lines
705 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\Invoice\Calculator;
|
|
|
|
use App\Entity\ExportableItem;
|
|
use App\Invoice\CalculatorInterface;
|
|
|
|
/**
|
|
* A calculator that sums up the invoice item records per week.
|
|
*/
|
|
final class WeeklyInvoiceCalculator extends AbstractSumInvoiceCalculator implements CalculatorInterface
|
|
{
|
|
protected function calculateSumIdentifier(ExportableItem $invoiceItem): string
|
|
{
|
|
return $invoiceItem->getBegin()->format('W');
|
|
}
|
|
|
|
public function getId(): string
|
|
{
|
|
return 'weekly';
|
|
}
|
|
}
|