mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
0fbda85a59
- Removed unused uses - Type hinting for method parameters - Removed commented code - Introduced comments for classes and methods - Short array syntax
26 lines
456 B
PHP
26 lines
456 B
PHP
<?php namespace App\Ninja\Presenters;
|
|
|
|
use Utils;
|
|
|
|
/**
|
|
* Class CreditPresenter
|
|
*/
|
|
class CreditPresenter extends EntityPresenter
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function client()
|
|
{
|
|
return $this->entity->client ? $this->entity->client->getDisplayName() : '';
|
|
}
|
|
|
|
/**
|
|
* @return \DateTime|string
|
|
*/
|
|
public function credit_date()
|
|
{
|
|
return Utils::fromSqlDate($this->entity->credit_date);
|
|
}
|
|
}
|