mirror of
https://github.com/standardebooks/web.git
synced 2025-07-16 03:16:36 -04:00
Enable some additional PHPStan rules and fix some type issues
This commit is contained in:
parent
c9e5026cf4
commit
a019d5e87c
8 changed files with 21 additions and 18 deletions
|
@ -76,7 +76,7 @@ catch(Exceptions\InvalidPermissionsException){
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Created:</td>
|
||||
<td><?= $user->Created->Format(Enums\DateTimeFormat::FullDateTime->value) ?></td>
|
||||
<td><?= $user->Created->format(Enums\DateTimeFormat::FullDateTime->value) ?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -219,7 +219,7 @@ catch(Exceptions\InvalidPermissionsException){
|
|||
<? foreach($user->Payments as $payment){ ?>
|
||||
<tr>
|
||||
<td>
|
||||
<time datetime="<?= $payment->Created->format(Enums\DateTimeFormat::Html->value) ?>"><?= $payment->Created->Format(Enums\DateTimeFormat::FullDateTime->value) ?></time>
|
||||
<time datetime="<?= $payment->Created->format(Enums\DateTimeFormat::Html->value) ?>"><?= $payment->Created->format(Enums\DateTimeFormat::FullDateTime->value) ?></time>
|
||||
</td>
|
||||
<td>
|
||||
<? if($payment->IsRecurring){ ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue