Passed
Pull Request — develop (#312)
by Schlaefer
02:37
created
plugins/phile/errorHandler/Classes/Development.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
 
22 22
     /**
23
- * @var array settings
23
+     * @var array settings
24 24
 */
25 25
     protected $settings;
26 26
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
     /**
291 291
      * link the class or method to the API or return the method name
292
-  *
292
+     *
293 293
      * @param $class
294 294
      * @param $method
295 295
      *
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                     'a',
139 139
                     'Exception-Wiki',
140 140
                     [
141
-                        'href' => 'https://github.com/PhileCMS/Phile/wiki/Exception_' . $code,
141
+                        'href' => 'https://github.com/PhileCMS/Phile/wiki/Exception_'.$code,
142 142
                         'target_' => 'blank'
143 143
                     ]
144 144
                 );
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
         }
154 154
 
155 155
         $DS = DIRECTORY_SEPARATOR;
156
-        $pluginPath = realpath(dirname(__FILE__) . $DS . '..') . $DS;
157
-        $tplPath = $pluginPath . 'template.php';
156
+        $pluginPath = realpath(dirname(__FILE__).$DS.'..').$DS;
157
+        $tplPath = $pluginPath.'template.php';
158 158
 
159 159
         ob_start();
160 160
         extract($marker);
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
             $backtrace .= ' ';
182 182
 
183 183
             if (isset($step['class'])) {
184
-                $class = $this->linkClass($step['class']) . '<span class="divider">::</span>';
185
-                $backtrace .= $class . $this->linkClass($step['class'], $step['function']);
184
+                $class = $this->linkClass($step['class']).'<span class="divider">::</span>';
185
+                $backtrace .= $class.$this->linkClass($step['class'], $step['function']);
186 186
             } elseif (isset($step['function'])) {
187 187
                 $backtrace .= $this->tag('span', $step['function'], ['class' => 'function']);
188 188
             }
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         if (!file_exists($filename)) {
252 252
             return '';
253 253
         }
254
-        $html = $this->tag('span', $filename . ':<br/>', ['class' => 'filename']);
254
+        $html = $this->tag('span', $filename.':<br/>', ['class' => 'filename']);
255 255
 
256 256
         $code = file_get_contents($filename);
257 257
         $lines = explode("\n", $code);
@@ -302,14 +302,14 @@  discard block
 block discarded – undo
302 302
             return $title;
303 303
         }
304 304
 
305
-        $filename = 'docs/classes/' . str_replace('\\', '.', $class) . '.html';
305
+        $filename = 'docs/classes/'.str_replace('\\', '.', $class).'.html';
306 306
         if (file_exists(Utility::resolveFilePath($filename))) {
307 307
             return $title;
308 308
         }
309 309
 
310
-        $href = $this->settings['base_url'] . '/' . $filename;
310
+        $href = $this->settings['base_url'].'/'.$filename;
311 311
         if ($method) {
312
-            $href .= '#method_' . $method;
312
+            $href .= '#method_'.$method;
313 313
         }
314 314
         return $this->tag('a', $title, ['href' =>  $href, 'target' => '_blank']);
315 315
     }
@@ -324,11 +324,11 @@  discard block
 block discarded – undo
324 324
      */
325 325
     protected function tag($tag, $content = '', array $attributes = [])
326 326
     {
327
-        $html = '<' . $tag;
327
+        $html = '<'.$tag;
328 328
         foreach ($attributes as $key => $value) {
329
-            $html .= ' ' . $key . '="' . htmlspecialchars($value) . '"';
329
+            $html .= ' '.$key.'="'.htmlspecialchars($value).'"';
330 330
         }
331
-        $html .= '>' . $content . '</' . $tag . '>';
331
+        $html .= '>'.$content.'</'.$tag.'>';
332 332
         return $html;
333 333
     }
334 334
 }
Please login to merge, or discard this patch.
lib/Phile/FilterIterator/ContentFileFilterIterator.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     {
22 22
         /**
23 23
          * @var \SplFileInfo $this
24
-        */
24
+         */
25 25
         $ext = Registry::get('Phile_Settings')['content_ext'];
26 26
         return (preg_match('/^[^\.]{1}.*' . $ext . '/', $this->getFilename()) > 0);
27 27
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
          * @var \SplFileInfo $this
24 24
         */
25 25
         $ext = Registry::get('Phile_Settings')['content_ext'];
26
-        return (preg_match('/^[^\.]{1}.*' . $ext . '/', $this->getFilename()) > 0);
26
+        return (preg_match('/^[^\.]{1}.*'.$ext.'/', $this->getFilename()) > 0);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.
lib/Phile/Bootstrap.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -84,12 +84,12 @@  discard block
 block discarded – undo
84 84
         defined('PHILE_VERSION') || define('PHILE_VERSION', '1.8.0');
85 85
         defined('PHILE_CLI_MODE') || define('PHILE_CLI_MODE', (php_sapi_name() === 'cli'));
86 86
         defined('DS') || define('DS', DIRECTORY_SEPARATOR);
87
-        defined('ROOT_DIR') || define('ROOT_DIR', realpath(__DIR__ . DS . '..' . DS . '..' . DS) . DS);
88
-        defined('LIB_DIR') || define('LIB_DIR', ROOT_DIR . 'lib' . DS);
89
-        defined('PLUGINS_DIR') || define('PLUGINS_DIR', ROOT_DIR . 'plugins' . DS);
90
-        defined('THEMES_DIR') || define('THEMES_DIR', ROOT_DIR . 'themes' . DS);
91
-        defined('CACHE_DIR') || define('CACHE_DIR', LIB_DIR . 'cache' . DS);
92
-        defined('STORAGE_DIR') || define('STORAGE_DIR', LIB_DIR . 'datastorage' . DS);
87
+        defined('ROOT_DIR') || define('ROOT_DIR', realpath(__DIR__.DS.'..'.DS.'..'.DS).DS);
88
+        defined('LIB_DIR') || define('LIB_DIR', ROOT_DIR.'lib'.DS);
89
+        defined('PLUGINS_DIR') || define('PLUGINS_DIR', ROOT_DIR.'plugins'.DS);
90
+        defined('THEMES_DIR') || define('THEMES_DIR', ROOT_DIR.'themes'.DS);
91
+        defined('CACHE_DIR') || define('CACHE_DIR', LIB_DIR.'cache'.DS);
92
+        defined('STORAGE_DIR') || define('STORAGE_DIR', LIB_DIR.'datastorage'.DS);
93 93
     }
94 94
 
95 95
     /**
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
         spl_autoload_extensions(".php");
101 101
         // load phile core
102 102
         spl_autoload_register(
103
-            function ($className) {
104
-                $fileName = LIB_DIR . str_replace("\\", DS, $className) . '.php';
103
+            function($className) {
104
+                $fileName = LIB_DIR.str_replace("\\", DS, $className).'.php';
105 105
                 if (file_exists($fileName)) {
106 106
                     include_once $fileName;
107 107
                 }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         // load phile plugins
111 111
         spl_autoload_register('\Phile\Plugin\PluginRepository::autoload');
112 112
 
113
-        include LIB_DIR . 'vendor' . DS . 'autoload.php';
113
+        include LIB_DIR.'vendor'.DS.'autoload.php';
114 114
     }
115 115
 
116 116
     /**
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
      */
119 119
     protected function initializeConfiguration()
120 120
     {
121
-        $defaults      = Utility::load(ROOT_DIR . 'default_config.php');
122
-        $localSettings = Utility::load(ROOT_DIR . 'config.php');
121
+        $defaults      = Utility::load(ROOT_DIR.'default_config.php');
122
+        $localSettings = Utility::load(ROOT_DIR.'config.php');
123 123
         if (is_array($localSettings)) {
124 124
             $this->settings = array_replace_recursive($defaults, $localSettings);
125 125
         } else {
Please login to merge, or discard this patch.
default_config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 /**
69 69
  * content directory
70 70
  */
71
-$config['content_dir'] = ROOT_DIR . 'content' . DS;
71
+$config['content_dir'] = ROOT_DIR.'content'.DS;
72 72
 
73 73
 /**
74 74
  * extension of content files
Please login to merge, or discard this patch.