Completed
Push — master ( 6e4cef...b785dd )
by Vladimir
02:32
created
src/allejo/stakx/FrontMatter/Parser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
      *
198 198
      * @param string $frontMatterKey     The current hierarchy of the Front Matter keys being used
199 199
      * @param string $expandableValue    The Front Matter value that will be expanded
200
-     * @param array  $arrayVariableNames The Front Matter variable names that reference arrays
200
+     * @param string[]  $arrayVariableNames The Front Matter variable names that reference arrays
201 201
      *
202 202
      * @throws YamlUnsupportedVariableException If a multidimensional array is given for value expansion
203 203
      *
Please login to merge, or discard this patch.
src/allejo/stakx/FrontMatter/WritableDocumentInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@  discard block
 block discarded – undo
13 13
      * Evaluate the FrontMatter in this object by merging a custom array of data.
14 14
      *
15 15
      * @param array|null $variables An array of YAML variables to use in evaluating the `$permalink` value
16
+     * @return void
16 17
      */
17 18
     public function evaluateFrontMatter($variables = null);
18 19
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
      * Append a custom FrontMatter value.
37 38
      *
38 39
      * @param array $frontMatter
40
+     * @return void
39 41
      */
40 42
     public function appendFrontMatter(array $frontMatter);
41 43
 
@@ -45,6 +47,7 @@  discard block
 block discarded – undo
45 47
      * This will not delete a FrontMatter value parsed from the file
46 48
      *
47 49
      * @param string $key
50
+     * @return void
48 51
      */
49 52
     public function deleteFrontMatter($key);
50 53
 
@@ -55,6 +58,7 @@  discard block
 block discarded – undo
55 58
      * available to Twig templates
56 59
      *
57 60
      * @param array $frontMatter
61
+     * @return void
58 62
      */
59 63
     public function setFrontMatter(array $frontMatter);
60 64
 }
Please login to merge, or discard this patch.
src/allejo/stakx/Document/ContentItem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
             $this->bodyContentEvaluated = true;
186 186
         }
187 187
 
188
-        return (string)$this->bodyContent;
188
+        return (string) $this->bodyContent;
189 189
     }
190 190
 
191 191
     /**
Please login to merge, or discard this patch.
src/allejo/stakx/Configuration.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
     /**
90 90
      * @TODO 1.0.0 Remove support for 'base' in next major release; it has been replaced by 'baseurl'
91 91
      *
92
-     * @return mixed|null
92
+     * @return string
93 93
      */
94 94
     public function getBaseUrl()
95 95
     {
Please login to merge, or discard this patch.
src/allejo/stakx/Exception/RecursiveConfigurationException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
 {
14 14
     private $import;
15 15
 
16
+    /**
17
+     * @param string $import
18
+     */
16 19
     public function __construct($import, $message = "", $code = 0, Exception $previous = null)
17 20
     {
18 21
         $this->import = $import;
Please login to merge, or discard this patch.
src/allejo/stakx/System/Folder.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
     protected $absolutePath;
22 22
     protected $targetDirectories;
23 23
 
24
+    /**
25
+     * @param string $folderPath
26
+     */
24 27
     public function __construct($folderPath)
25 28
     {
26 29
         $this->fs = new Filesystem();
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/CollectionManager.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,9 @@
 block discarded – undo
69 69
          */
70 70
         foreach ($this->trackedItemsFlattened as &$item)
71 71
         {
72
-            if (!Service::getParameter(BuildableCommand::USE_DRAFTS) && $item['draft']) { continue; }
72
+            if (!Service::getParameter(BuildableCommand::USE_DRAFTS) && $item['draft'])
73
+            {
74
+continue; }
73 75
 
74 76
             $jailItems[$item->getCollection()][$item->getName()] = $item->createJail();
75 77
         }
Please login to merge, or discard this patch.
src/allejo/stakx/Compiler.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -86,6 +86,9 @@
 block discarded – undo
86 86
         $this->pageViewsFlattened = &$pageViewsFlattened;
87 87
     }
88 88
 
89
+    /**
90
+     * @param string $themeName
91
+     */
89 92
     public function setThemeName($themeName)
90 93
     {
91 94
         $this->theme = $themeName;
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/TrackingManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
      *
150 150
      * @param SplFileInfo|string $filePath The relative path of the file
151 151
      *
152
-     * @return mixed|null
152
+     * @return \allejo\stakx\Document\PageView
153 153
      */
154 154
     public function refreshItem($filePath)
155 155
     {
Please login to merge, or discard this patch.