Passed
Pull Request — main (#4395)
by David
06:51
created
app/Services/GedcomEditService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
                 }
155 155
             }
156 156
 
157
-            if ($values[$i] !== '' || $children_with_values  && !$element instanceof AbstractXrefElement) {
157
+            if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) {
158 158
                 if ($values[$i] === '') {
159 159
                     $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i];
160 160
                 } else {
Please login to merge, or discard this patch.
app/Factories/ResponseFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@
 block discarded – undo
108 108
         if (is_string($content)) {
109 109
             $headers['content-type'] ??= 'text/html; charset=UTF-8';
110 110
         } else {
111
-            $content                 = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
111
+            $content = json_encode($content, JSON_THROW_ON_ERROR | JSON_UNESCAPED_UNICODE);
112 112
             $headers['content-type'] ??= 'application/json';
113 113
         }
114 114
 
Please login to merge, or discard this patch.
app/Http/RequestHandlers/RedirectReportEnginePhp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         $tree   = $this->tree_service->all()->get($ged);
61 61
 
62 62
         if ($tree instanceof Tree && $action === 'run') {
63
-            $query  = $request->getQueryParams();
63
+            $query = $request->getQueryParams();
64 64
             $query['report'] = basename(dirname($query['report'] ?? ''));
65 65
             $query['tree']   = $tree->name();
66 66
 
Please login to merge, or discard this patch.
app/Module/AncestorsChartModule.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
     // Defaults
51 51
     public const DEFAULT_GENERATIONS = '4';
52 52
     public const DEFAULT_STYLE       = self::CHART_STYLE_TREE;
53
-    protected const DEFAULT_PARAMETERS  = [
53
+    protected const DEFAULT_PARAMETERS = [
54 54
         'generations' => self::DEFAULT_GENERATIONS,
55 55
         'style'       => self::DEFAULT_STYLE,
56 56
     ];
Please login to merge, or discard this patch.
app/Http/RequestHandlers/ExportGedcomPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         // Force a ".ged" suffix
60 60
         if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') {
61
-            $download_filename  = substr($filename, 0, -4);
61
+            $download_filename = substr($filename, 0, -4);
62 62
         } else {
63 63
             $download_filename = $filename;
64 64
         }
Please login to merge, or discard this patch.
app/Http/RequestHandlers/ReorderMediaFilesAction.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
         $xref  = Validator::attributes($request)->isXref()->string('xref');
51 51
         $media = Registry::mediaFactory()->make($xref, $tree);
52 52
         $media = Auth::checkMediaAccess($media, true);
53
-        $params     = (array) $request->getParsedBody();
53
+        $params = (array) $request->getParsedBody();
54 54
 
55 55
         $order = $params['order'];
56 56
         assert(is_array($order));
Please login to merge, or discard this patch.
app/Factories/MarkdownFactory.php 1 patch
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,14 +50,14 @@  discard block
 block discarded – undo
50 50
  */
51 51
 class MarkdownFactory implements MarkdownFactoryInterface
52 52
 {
53
-    public const BREAK = '<br />';
53
+    public const break = '<br />';
54 54
 
55 55
     // Commonmark uses <br /> for hard-breaks, so we use the same for soft-breaks.
56 56
     protected const CONFIG_AUTOLINK = [
57 57
         'allow_unsafe_links' => false,
58 58
         'html_input'         => HtmlFilter::ESCAPE,
59 59
         'renderer'           => [
60
-            'soft_break'     => self::BREAK,
60
+            'soft_break'     => self::break,
61 61
         ],
62 62
     ];
63 63
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         'allow_unsafe_links' => false,
66 66
         'html_input'         => HtmlFilter::ESCAPE,
67 67
         'renderer'           => [
68
-            'soft_break'     => self::BREAK,
68
+            'soft_break'     => self::break,
69 69
         ],
70 70
         'table'              => [
71 71
             'wrap' => [
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         $converter = new MarkDownConverter($environment);
105 105
 
106 106
         $html = $converter->convert($markdown)->getContent();
107
-        $html = strtr($html, ["</p>\n<p>" => self::BREAK . self::BREAK]);
107
+        $html = strtr($html, ["</p>\n<p>" => self::break . self::break]);
108 108
 
109 109
         return trim(strip_tags($html, ['a', 'br']));
110 110
     }
Please login to merge, or discard this patch.
app/Contracts/SurnameTraditionFactoryInterface.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
     public const POLISH      = 'polish';
44 44
     public const LITHUANIAN  = 'lithuanian';
45 45
     public const ICELANDIC   = 'icelandic';
46
-    public const DEFAULT     = '';
46
+    public const default     = '';
47 47
 
48 48
     /**
49 49
      * A list of supported surname traditions and their names.
Please login to merge, or discard this patch.
app/Factories/SurnameTraditionFactory.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
         $this->register(self::POLISH, new PolishSurnameTradition());
53 53
         $this->register(self::LITHUANIAN, new LithuanianSurnameTradition());
54 54
         $this->register(self::ICELANDIC, new IcelandicSurnameTradition());
55
-        $this->register(self::DEFAULT, new DefaultSurnameTradition());
55
+        $this->register(self::default, new DefaultSurnameTradition());
56 56
     }
57 57
 
58 58
     /**
Please login to merge, or discard this patch.