summaryrefslogtreecommitdiff
path: root/app/Statistics/Google
diff options
context:
space:
mode:
Diffstat (limited to 'app/Statistics/Google')
-rw-r--r--app/Statistics/Google/ChartBirth.php2
-rw-r--r--app/Statistics/Google/ChartCommonGiven.php2
-rw-r--r--app/Statistics/Google/ChartCommonSurname.php2
-rw-r--r--app/Statistics/Google/ChartDeath.php2
-rw-r--r--app/Statistics/Google/ChartDistribution.php2
-rw-r--r--app/Statistics/Google/ChartDivorce.php2
-rw-r--r--app/Statistics/Google/ChartFamilyLargest.php2
-rw-r--r--app/Statistics/Google/ChartFamilyWithSources.php2
-rw-r--r--app/Statistics/Google/ChartIndividualWithSources.php2
-rw-r--r--app/Statistics/Google/ChartMarriage.php2
-rw-r--r--app/Statistics/Google/ChartMedia.php2
11 files changed, 11 insertions, 11 deletions
diff --git a/app/Statistics/Google/ChartBirth.php b/app/Statistics/Google/ChartBirth.php
index 482b0d7cc5..e679cd4645 100644
--- a/app/Statistics/Google/ChartBirth.php
+++ b/app/Statistics/Google/ChartBirth.php
@@ -57,7 +57,7 @@ class ChartBirth
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->century_service = new CenturyService();
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartCommonGiven.php b/app/Statistics/Google/ChartCommonGiven.php
index c9f3a7e700..ea710ba8cf 100644
--- a/app/Statistics/Google/ChartCommonGiven.php
+++ b/app/Statistics/Google/ChartCommonGiven.php
@@ -41,7 +41,7 @@ class ChartCommonGiven
*/
public function __construct()
{
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartCommonSurname.php b/app/Statistics/Google/ChartCommonSurname.php
index 311578142a..50a99ebde2 100644
--- a/app/Statistics/Google/ChartCommonSurname.php
+++ b/app/Statistics/Google/ChartCommonSurname.php
@@ -49,7 +49,7 @@ class ChartCommonSurname
*/
public function __construct(Tree $tree)
{
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->surname_tradition = $tree->getPreference('SURNAME_TRADITION');
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartDeath.php b/app/Statistics/Google/ChartDeath.php
index 5ea88c9c73..5f50ebe57f 100644
--- a/app/Statistics/Google/ChartDeath.php
+++ b/app/Statistics/Google/ChartDeath.php
@@ -57,7 +57,7 @@ class ChartDeath
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->century_service = new CenturyService();
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartDistribution.php b/app/Statistics/Google/ChartDistribution.php
index fd09c6c9b7..b8adcef137 100644
--- a/app/Statistics/Google/ChartDistribution.php
+++ b/app/Statistics/Google/ChartDistribution.php
@@ -69,7 +69,7 @@ class ChartDistribution
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->country_service = new CountryService();
$this->individualRepository = new IndividualRepository($tree);
$this->placeRepository = new PlaceRepository($tree);
diff --git a/app/Statistics/Google/ChartDivorce.php b/app/Statistics/Google/ChartDivorce.php
index 8878329793..68b9444232 100644
--- a/app/Statistics/Google/ChartDivorce.php
+++ b/app/Statistics/Google/ChartDivorce.php
@@ -57,7 +57,7 @@ class ChartDivorce
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->century_service = new CenturyService();
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartFamilyLargest.php b/app/Statistics/Google/ChartFamilyLargest.php
index cd8a761ac1..80f3783934 100644
--- a/app/Statistics/Google/ChartFamilyLargest.php
+++ b/app/Statistics/Google/ChartFamilyLargest.php
@@ -52,7 +52,7 @@ class ChartFamilyLargest
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartFamilyWithSources.php b/app/Statistics/Google/ChartFamilyWithSources.php
index 0db2467cf8..7c725fe16f 100644
--- a/app/Statistics/Google/ChartFamilyWithSources.php
+++ b/app/Statistics/Google/ChartFamilyWithSources.php
@@ -41,7 +41,7 @@ class ChartFamilyWithSources
*/
public function __construct()
{
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartIndividualWithSources.php b/app/Statistics/Google/ChartIndividualWithSources.php
index 09166f15e3..0a468ac0b1 100644
--- a/app/Statistics/Google/ChartIndividualWithSources.php
+++ b/app/Statistics/Google/ChartIndividualWithSources.php
@@ -41,7 +41,7 @@ class ChartIndividualWithSources
*/
public function __construct()
{
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartMarriage.php b/app/Statistics/Google/ChartMarriage.php
index 117d594d93..bb0c387be7 100644
--- a/app/Statistics/Google/ChartMarriage.php
+++ b/app/Statistics/Google/ChartMarriage.php
@@ -57,7 +57,7 @@ class ChartMarriage
public function __construct(Tree $tree)
{
$this->tree = $tree;
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->century_service = new CenturyService();
$this->color_service = new ColorService();
}
diff --git a/app/Statistics/Google/ChartMedia.php b/app/Statistics/Google/ChartMedia.php
index ff505ea595..9348917b9e 100644
--- a/app/Statistics/Google/ChartMedia.php
+++ b/app/Statistics/Google/ChartMedia.php
@@ -42,7 +42,7 @@ class ChartMedia
*/
public function __construct()
{
- $this->theme = app()->make(ModuleThemeInterface::class);
+ $this->theme = app(ModuleThemeInterface::class);
$this->color_service = new ColorService();
}