Warn about expensive code in test environment.

This commit is contained in:
James Cole
2019-06-22 10:25:57 +02:00
parent 0f70cc5780
commit 2710a30a7c
15 changed files with 328 additions and 127 deletions

View File

@@ -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.
*