mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 11:19:16 +00:00
20 lines
375 B
PHP
20 lines
375 B
PHP
![]() |
<?php
|
||
|
namespace Firefly\Helper;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class HelperServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
|
||
|
|
||
|
// Triggered automatically by Laravel
|
||
|
public function register()
|
||
|
{
|
||
|
// mail:
|
||
|
$this->app->bind(
|
||
|
'Firefly\Helper\Email\EmailHelperInterface',
|
||
|
'Firefly\Helper\Email\EmailHelper'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|