mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-08 10:48:13 +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'
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|