Passed
Push — develop ( 13c238...e8e299 )
by Paul
04:28
created
src/Helpers/Theme.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace GeminiLabs\Castor\Helpers;
4 4
 
5
-class Theme
6
-{
5
+class Theme {
7 6
     public $archiveMeta;
8 7
     public $postMeta;
9 8
 
Please login to merge, or discard this patch.
src/Helpers/Development.php 1 patch
Braces   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 namespace GeminiLabs\Castor\Helpers;
4 4
 
5
-class Development
6
-{
5
+class Development {
7 6
     public $templatePaths = [];
8 7
 
9 8
     protected $utility;
@@ -72,7 +71,8 @@  discard block
 block discarded – undo
72 71
             printf('<div class="print__r"><pre>%s</pre></div>',
73 72
                 htmlspecialchars(print_r(func_get_arg(0), true), ENT_QUOTES, 'UTF-8')
74 73
             );
75
-        } elseif ($args > 1) {
74
+        }
75
+        elseif ($args > 1) {
76 76
             echo '<div class="print__r_group">';
77 77
             foreach (func_get_args() as $value) {
78 78
                 $this->printF($value);
Please login to merge, or discard this patch.