Completed
Push — master ( b7a681...e792b8 )
by Jakub
01:59
created
src/Generator.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
    */
99 99
   protected function setTemplate(string $template): void {
100 100
     if(!is_file($template) || !is_readable($template)) {
101
-      throw new \RuntimeException("File $template does not exist or is not readable.");
101
+      throw new \RuntimeException("file $template does not exist or is not readable.");
102 102
     }
103 103
     $this->template = $template;
104 104
   }
Please login to merge, or discard this patch.
src/Extensions/RssCore.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
       return new GenericElement("lastBuildDate", $value);
137 137
     });
138 138
     $resolver->setDefined([
139
-      "language", "copyright", "managingEditor", "webMaster", "ttl",  "pubDate", "rating", "categories", "skipDays",
139
+      "language", "copyright", "managingEditor", "webMaster", "ttl", "pubDate", "rating", "categories", "skipDays",
140 140
       "skipHours", "image", "cloud", "textInput",
141 141
     ]);
142 142
     $resolver->setAllowedTypes("language", "string");
Please login to merge, or discard this patch.