LDAP authentication support (#815)

This commit is contained in:
Kevin Papst
2019-06-07 22:48:39 +02:00
committed by GitHub
parent bcf1ebd778
commit 0c0e9c2f71
99 changed files with 3542 additions and 926 deletions

View File

@@ -190,11 +190,7 @@ abstract class AbstractRendererTest extends KernelTestCase
return $model;
}
/**
* @param Timesheet[] $timesheets
* @return InvoiceModel
*/
protected function getInvoiceModelOneEntry()
protected function getInvoiceModelOneEntry(): InvoiceModel
{
$customer = new Customer();
$customer->setCurrency('USD');

View File

@@ -54,7 +54,7 @@ class DebugRenderer implements RendererInterface
}
/**
* @param $amount
* @param mixed $amount
* @return mixed
*/
protected function getFormattedMoney($amount)
@@ -72,7 +72,7 @@ class DebugRenderer implements RendererInterface
}
/**
* @param $seconds
* @param mixed $seconds
* @return mixed
*/
protected function getFormattedDuration($seconds)