Passed
Push — dbal ( c6a380...004b3e )
by Greg
22:29 queued 06:40
created
app/Module/ModuleThemeInterface.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      *
43 43
      * @return Menu|null
44 44
      */
45
-    public function menuThemes(): Menu|null;
45
+    public function menuThemes(): Menu | null;
46 46
 
47 47
     /**
48 48
      * Generate a list of items for the main menu.
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @return array<Menu>
53 53
      */
54
-    public function genealogyMenu(Tree|null $tree): array;
54
+    public function genealogyMenu(Tree | null $tree): array;
55 55
 
56 56
     /**
57 57
      * Generate a list of items for the user menu.
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      *
61 61
      * @return array<Menu>
62 62
      */
63
-    public function userMenu(Tree|null $tree): array;
63
+    public function userMenu(Tree | null $tree): array;
64 64
 
65 65
     /**
66 66
      * A list of CSS files to include for this page.
Please login to merge, or discard this patch.
app/Module/InteractiveTreeModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
      *
142 142
      * @return Menu|null
143 143
      */
144
-    public function chartBoxMenu(Individual $individual): Menu|null
144
+    public function chartBoxMenu(Individual $individual): Menu | null
145 145
     {
146 146
         return $this->chartMenu($individual);
147 147
     }
Please login to merge, or discard this patch.
app/Module/SourcesTabModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     use ModuleTabTrait;
34 34
 
35 35
     /** @var Collection<array-key,Fact>|null  */
36
-    private Collection|null $facts = null;
36
+    private Collection | null $facts = null;
37 37
 
38 38
     private ClipboardService $clipboard_service;
39 39
 
Please login to merge, or discard this patch.
app/Module/ReportsMenuModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      *
85 85
      * @return Menu|null
86 86
      */
87
-    public function getMenu(Tree $tree): Menu|null
87
+    public function getMenu(Tree $tree): Menu | null
88 88
     {
89 89
         $request    = Registry::container()->get(ServerRequestInterface::class);
90 90
         $xref       = Validator::attributes($request)->isXref()->string('xref', '');
Please login to merge, or discard this patch.
app/Module/CloudsTheme.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      *
51 51
      * @return array<Menu>
52 52
      */
53
-    public function genealogyMenu(Tree|null $tree): array
53
+    public function genealogyMenu(Tree | null $tree): array
54 54
     {
55 55
         $primary_menu = $this->baseGenealogyMenu($tree);
56 56
 
Please login to merge, or discard this patch.
app/Module/SearchMenuModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      *
77 77
      * @return Menu|null
78 78
      */
79
-    public function getMenu(Tree $tree): Menu|null
79
+    public function getMenu(Tree $tree): Menu | null
80 80
     {
81 81
         $submenu = [
82 82
             $this->menuSearchGeneral($tree),
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      *
131 131
      * @return Menu|null
132 132
      */
133
-    protected function menuSearchAndReplace(Tree $tree): Menu|null
133
+    protected function menuSearchAndReplace(Tree $tree): Menu | null
134 134
     {
135 135
         if (Auth::isEditor($tree)) {
136 136
             $url = route(SearchReplacePage::class, ['tree' => $tree->name()]);
Please login to merge, or discard this patch.
app/Module/FixCemeteryTag.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      *
101 101
      * @return Collection<int,string>|null
102 102
      */
103
-    protected function individualsToFix(Tree $tree, array $params): Collection|null
103
+    protected function individualsToFix(Tree $tree, array $params): Collection | null
104 104
     {
105 105
         return $this->individualsToFixQuery($tree, $params)
106 106
             ->where(static function (Builder $query): void {
Please login to merge, or discard this patch.
app/Module/FamilyBookChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
     /**
105 105
      * Return a menu item for this chart - for use in individual boxes.
106 106
      */
107
-    public function chartBoxMenu(Individual $individual): Menu|null
107
+    public function chartBoxMenu(Individual $individual): Menu | null
108 108
     {
109 109
         return $this->chartMenu($individual);
110 110
     }
Please login to merge, or discard this patch.
app/Module/BranchesListModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -378,7 +378,7 @@
 block discarded – undo
378 378
      *
379 379
      * @return string
380 380
      */
381
-    private function getDescendantsHtml(Tree $tree, array $individuals, array $ancestors, string $surname, bool $soundex_dm, bool $soundex_std, Individual $individual, Family|null $parents = null): string
381
+    private function getDescendantsHtml(Tree $tree, array $individuals, array $ancestors, string $surname, bool $soundex_dm, bool $soundex_std, Individual $individual, Family | null $parents = null): string
382 382
     {
383 383
         $module = $this->module_service
384 384
             ->findByComponent(ModuleChartInterface::class, $tree, Auth::user())
Please login to merge, or discard this patch.