mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 00:00:57 -04:00
* Default database connection - set defaults for engine and strict * Working on tests for refactored model * Fixes for tests, use polymorphic relationships for Invitations * skin the password reset pages
15 lines
159 B
PHP
15 lines
159 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
use Laracasts\Presenter\Presenter;
|
|
|
|
/**
|
|
* Class AccountPresenter.
|
|
*/
|
|
class AccountPresenter extends Presenter
|
|
{
|
|
|
|
|
|
}
|