mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Half-way through with some cleaning up.
This commit is contained in:
28
app/lib/FireflyIII/FF3ServiceProvider.php
Normal file
28
app/lib/FireflyIII/FF3ServiceProvider.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace FireflyIII;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
/**
|
||||
* Class FF3ServiceProvider
|
||||
*
|
||||
* @package FireflyIII
|
||||
*/
|
||||
class FF3ServiceProvider extends ServiceProvider
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* Triggered automatically by Laravel
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
// FORMAT:
|
||||
#$this->app->bind('Interface', 'Class');
|
||||
|
||||
// preferences:
|
||||
$this->app->bind('FireflyIII\Shared\Preferences\PreferencesInterface', 'FireflyIII\Shared\Preferences\Preferences');
|
||||
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user