@@ -28,7 +28,7 @@ |
||
28 | 28 | * Where are our CSS, JS and other assets? |
29 | 29 | */ |
30 | 30 | protected const THEME_DIR = 'minimal'; |
31 | - public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
31 | + public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
32 | 32 | protected const STYLESHEET = self::ASSET_DIR . 'style.css'; |
33 | 33 | |
34 | 34 | /** |
@@ -28,7 +28,7 @@ |
||
28 | 28 | * Where are our CSS, JS and other assets? |
29 | 29 | */ |
30 | 30 | protected const THEME_DIR = 'xenea'; |
31 | - public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
31 | + public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
32 | 32 | protected const STYLESHEET = self::ASSET_DIR . 'style.css'; |
33 | 33 | |
34 | 34 | /** |
@@ -32,7 +32,7 @@ |
||
32 | 32 | * Where are our CSS, JS and other assets? |
33 | 33 | */ |
34 | 34 | protected const THEME_DIR = 'colors'; |
35 | - public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
35 | + public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
36 | 36 | protected const STYLESHEET = self::ASSET_DIR . 'style.css'; |
37 | 37 | |
38 | 38 | /** @var string[] A list of color palettes */ |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * Where are our CSS, JS and other assets? |
30 | 30 | */ |
31 | 31 | protected const THEME_DIR = 'fab'; |
32 | - public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
32 | + public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
33 | 33 | protected const STYLESHEET = self::ASSET_DIR . 'style.css'; |
34 | 34 | |
35 | 35 | /** |
@@ -30,7 +30,7 @@ |
||
30 | 30 | * Where are our CSS, JS and other assets? |
31 | 31 | */ |
32 | 32 | protected const THEME_DIR = 'clouds'; |
33 | - public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
33 | + public const ASSET_DIR = 'themes/' . self::THEME_DIR . '/css-2.0.0/'; |
|
34 | 34 | protected const STYLESHEET = self::ASSET_DIR . 'style.css'; |
35 | 35 | |
36 | 36 | /** |
@@ -70,7 +70,7 @@ |
||
70 | 70 | |
71 | 71 | $top10 = DB::table('hit_counter') |
72 | 72 | ->where('gedcom_id', '=', $tree->id()) |
73 | - ->whereIn('page_name', ['individual.php','family.php','source.php','repo.php','note.php','mediaviewer.php']) |
|
73 | + ->whereIn('page_name', ['individual.php', 'family.php', 'source.php', 'repo.php', 'note.php', 'mediaviewer.php']) |
|
74 | 74 | ->orderByDesc('page_count') |
75 | 75 | ->limit((int) $num) |
76 | 76 | ->pluck('page_count', 'page_parameter'); |
@@ -28,7 +28,7 @@ |
||
28 | 28 | { |
29 | 29 | public const RECORD_TYPE = 'SOUR'; |
30 | 30 | |
31 | - protected const ROUTE_NAME = 'source'; |
|
31 | + protected const ROUTE_NAME = 'source'; |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * A closure which will create a record from a database row. |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | { |
95 | 95 | $url = $request->get('url', ''); |
96 | 96 | $xref = $request->get('xref', ''); |
97 | - $change_id = (int)$request->get('change_id'); |
|
97 | + $change_id = (int) $request->get('change_id'); |
|
98 | 98 | |
99 | 99 | $changes = DB::table('change') |
100 | 100 | ->where('gedcom_id', '=', $tree->id()) |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | { |
192 | 192 | $url = $request->get('url', ''); |
193 | 193 | $xref = $request->get('xref', ''); |
194 | - $change_id = (int)$request->get('change_id'); |
|
194 | + $change_id = (int) $request->get('change_id'); |
|
195 | 195 | |
196 | 196 | // Reject a change, and subsequent changes to the same record |
197 | 197 | DB::table('change') |
@@ -519,7 +519,7 @@ |
||
519 | 519 | // ... and process the differences |
520 | 520 | $inserted = 0; |
521 | 521 | if ($diff->isNotEmpty()) { |
522 | - $nextRecordId = 1 + (int) DB::table('placelocation')->max('pl_id'); |
|
522 | + $nextRecordId = 1 + (int) DB::table('placelocation')->max('pl_id'); |
|
523 | 523 | |
524 | 524 | foreach ($diff as $place) { |
525 | 525 | // For Westminster, London, England, we must also create England and London, England |