Completed
Pull Request — master (#284)
by
unknown
04:56
created
lib/Phile/Core/Utility.php 1 patch
Doc Comments   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * resolve a file path by replace the mod: prefix
57 57
      *
58
-     * @param $path
58
+     * @param string $path
59 59
      *
60 60
      * @return string|null the full filepath or null if file does not exists
61 61
      */
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * load files e.g. config files
78 78
      *
79
-     * @param $file
79
+     * @param string $file
80 80
      *
81 81
      * @return mixed|null
82 82
      */
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     /**
111 111
      * static method to get files by directory and file filter
112 112
      *
113
-     * @param $directory
113
+     * @param string $directory
114 114
      * @param string    $filter
115 115
      *
116 116
      * @return array
@@ -202,6 +202,11 @@  discard block
 block discarded – undo
202 202
      * @return mixed
203 203
      */
204 204
     // @codingStandardsIgnoreStart
205
+
206
+    /**
207
+     * @param integer $min
208
+     * @param integer $max
209
+     */
205 210
     public static function crypto_rand_secure($min, $max)
206 211
     {
207 212
         // @codingStandardsIgnoreEnd
Please login to merge, or discard this patch.
lib/Phile/Model/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     /**
134 134
      * set content of page
135 135
      *
136
-     * @param $content
136
+     * @param string $content
137 137
      */
138 138
     public function setContent($content)
139 139
     {
Please login to merge, or discard this patch.
lib/Phile/Plugin/AbstractPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      * get file path to plugin root (trailing slash) or to a sub-item
129 129
      *
130 130
      * @param  string $subPath
131
-     * @return null|string null if item does not exist
131
+     * @return string null if item does not exist
132 132
      */
133 133
     protected function getPluginPath($subPath = '')
134 134
     {
Please login to merge, or discard this patch.
plugins/phile/templateTwig/Classes/Template/Twig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     /**
80 80
      * wrapper to call the render engine
81 81
      *
82
-     * @param  $engine
82
+     * @param  \Twig_Environment $engine
83 83
      * @param  $vars
84 84
      * @return mixed
85 85
      */
Please login to merge, or discard this patch.
lib/Phile/FilterIterator/ContentFileFilterIterator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
         /**
21 21
  * @var \SplFileInfo $this
22 22
 */
23
-        return (preg_match('/^[^\.]{1}.*'.CONTENT_EXT.'/', $this->getFilename()) > 0);
23
+        return (preg_match('/^[^\.]{1}.*' . CONTENT_EXT . '/', $this->getFilename()) > 0);
24 24
     }
25 25
 }
Please login to merge, or discard this patch.
lib/Phile/Bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         spl_autoload_extensions(".php");
103 103
         // load phile core
104 104
         spl_autoload_register(
105
-            function ($className) {
105
+            function($className) {
106 106
                 $fileName = LIB_DIR . str_replace("\\", DS, $className) . '.php';
107 107
                 if (file_exists($fileName)) {
108 108
                     include_once $fileName;
Please login to merge, or discard this patch.
lib/Phile/Repository/Page.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     public function findAll(array $options = array(), $folder = CONTENT_DIR)
93 93
     {
94 94
         return new PageCollection(
95
-            function () use ($options, $folder) {
95
+            function() use ($options, $folder) {
96 96
                 $options += $this->settings;
97 97
                 // ignore files with a leading '.' in its filename
98 98
                 $files = Utility::getFiles($folder, '\Phile\FilterIterator\ContentFileFilterIterator');
Please login to merge, or discard this patch.
lib/Phile/Repository/PageCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     public function offsetSet($offset, $value)
77 77
     {
78 78
         $this->load();
79
-        $this->pages[$offset] =    $value;
79
+        $this->pages[$offset] = $value;
80 80
     }
81 81
 
82 82
     public function offsetUnset($offset)
Please login to merge, or discard this patch.
plugins/phile/errorHandler/Classes/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
  */
22 22
 class Plugin extends AbstractPlugin
23 23
 {
24
-    const HANDLER_ERROR_LOG        = 'error_log';
25
-    const HANDLER_DEVELOPMENT    = 'development';
24
+    const HANDLER_ERROR_LOG = 'error_log';
25
+    const HANDLER_DEVELOPMENT = 'development';
26 26
 
27 27
     protected $events = ['plugins_loaded' => 'onPluginsLoaded'];
28 28
 
Please login to merge, or discard this patch.