Completed
Push — master ( e24a9d...4513c4 )
by Vladimir
02:04
created
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/Document/TwigDocument.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * @param string $filePath
14
+     * @return void
14 15
      */
15 16
     public function __construct($filePath);
16 17
 
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/AssetManager.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -68,6 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
     /**
70 70
      * {@inheritdoc}
71
+     * @param string $filePath
71 72
      */
72 73
     public function refreshItem($filePath)
73 74
     {
@@ -86,6 +87,7 @@  discard block
 block discarded – undo
86 87
 
87 88
     /**
88 89
      * {@inheritdoc}
90
+     * @param string $filePath
89 91
      */
90 92
     public function createNewItem($filePath)
91 93
     {
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/CollectionManager.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     /**
29 29
      * Get all of the ContentItems grouped by Collection name.
30 30
      *
31
-     * @return ContentItem[][]
31
+     * @return \allejo\stakx\Document\TrackableDocument[]
32 32
      */
33 33
     public function &getCollections()
34 34
     {
@@ -109,6 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
     /**
111 111
      * {@inheritdoc}
112
+     * @param string $filePath
112 113
      */
113 114
     public function createNewItem($filePath)
114 115
     {
Please login to merge, or discard this patch.
src/allejo/stakx/Twig/BaseUrlFunction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@
 block discarded – undo
32 32
         ));
33 33
     }
34 34
 
35
+    /**
36
+     * @param boolean $absolute
37
+     */
35 38
     private function getUrl($absolute)
36 39
     {
37 40
         $url = '/';
Please login to merge, or discard this patch.
src/allejo/stakx/Command/ContainerAwareCommand.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 {
15 15
     private $container;
16 16
 
17
+    /**
18
+     * @return \Symfony\Component\DependencyInjection\ContainerInterface
19
+     */
17 20
     public function getContainer()
18 21
     {
19 22
         if ($this->container === null)
Please login to merge, or discard this patch.
src/allejo/stakx/Compiler.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -110,6 +110,9 @@  discard block
 block discarded – undo
110 110
     // Twig parent templates
111 111
     ///
112 112
 
113
+    /**
114
+     * @param string $filePath
115
+     */
113 116
     public function isImportDependency($filePath)
114 117
     {
115 118
         return isset($this->importDependencies[$filePath]);
@@ -162,6 +165,9 @@  discard block
 block discarded – undo
162 165
         }
163 166
     }
164 167
 
168
+    /**
169
+     * @param string $filePath
170
+     */
165 171
     public function compileImportDependencies($filePath)
166 172
     {
167 173
         foreach ($this->importDependencies[$filePath] as &$dependent)
Please login to merge, or discard this patch.
src/allejo/stakx/Document/ReadableDocument.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     protected $fs;
22 22
 
23 23
     /**
24
-     * @param string $filePath
24
+     * @param File $filePath
25 25
      */
26 26
     public function __construct(File $filePath)
27 27
     {
Please login to merge, or discard this patch.
src/allejo/stakx/Manager/PageManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * @deprecated Been replaced by getPageViewsFlattened()
87 87
      * @since      0.1.0
88 88
      *
89
-     * @return PageView[][]
89
+     * @return \allejo\stakx\Document\TrackableDocument[]
90 90
      */
91 91
     public function getAllPageViews()
92 92
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      *
99 99
      * @since  0.1.1
100 100
      *
101
-     * @return PageView[][]
101
+     * @return \allejo\stakx\Document\TrackableDocument[]
102 102
      */
103 103
     public function &getPageViews()
104 104
     {
Please login to merge, or discard this patch.