mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 08:35:00 +00:00
Warn about expensive code in test environment.
This commit is contained in:
@@ -26,7 +26,7 @@ use FireflyIII\Models\Preference;
|
||||
use FireflyIII\User;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
use Log;
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
* Class Preferences.
|
||||
@@ -44,6 +44,11 @@ use Illuminate\Support\Facades\Facade;
|
||||
*/
|
||||
class Preferences extends Facade
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
Log::warning('Hi there');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the registered name of the component.
|
||||
*
|
||||
|
Reference in New Issue
Block a user