@@ -81,7 +81,7 @@ |
||
81 | 81 | protected function parseRawData($rawData) |
82 | 82 | { |
83 | 83 | /** |
84 | - * @var \Phile\ServiceLocator\MetaInterface $metaParser |
|
84 | + * @var \Phile\ServiceLocator\MetaInterface $metaParser |
|
85 | 85 | */ |
86 | 86 | $metaParser = ServiceLocator::getService('Phile_Parser_Meta'); |
87 | 87 | $data = $metaParser->parse($rawData); |
@@ -128,8 +128,8 @@ |
||
128 | 128 | $column = array(); |
129 | 129 | foreach ($pages as $page) { |
130 | 130 | /** |
131 | - * @var \Phile\Model\Page $page |
|
132 | - */ |
|
131 | + * @var \Phile\Model\Page $page |
|
132 | + */ |
|
133 | 133 | $meta = $page->getMeta(); |
134 | 134 | if ($sort['type'] === 'page') { |
135 | 135 | $method = 'get' . ucfirst($key); |
@@ -16,12 +16,12 @@ discard block |
||
16 | 16 | { |
17 | 17 | |
18 | 18 | /** |
19 | - * @var array of AbstractPlugin |
|
19 | + * @var array of AbstractPlugin |
|
20 | 20 | */ |
21 | 21 | protected $plugins = []; |
22 | 22 | |
23 | 23 | /** |
24 | - * @var array errors during load; keys: 'message' and 'code' |
|
24 | + * @var array errors during load; keys: 'message' and 'code' |
|
25 | 25 | */ |
26 | 26 | protected $loadErrors = []; |
27 | 27 | |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
85 | - * @var \Phile\Plugin\AbstractPlugin $plugin |
|
85 | + * @var \Phile\Plugin\AbstractPlugin $plugin |
|
86 | 86 | */ |
87 | 87 | $plugin = new $pluginClassName; |
88 | 88 | if (($plugin instanceof AbstractPlugin) === false) { |
@@ -17,7 +17,7 @@ |
||
17 | 17 | class SimpleFileDataPersistence implements PersistenceInterface |
18 | 18 | { |
19 | 19 | /** |
20 | - * @var string $dataDirectory the data storage directory |
|
20 | + * @var string $dataDirectory the data storage directory |
|
21 | 21 | */ |
22 | 22 | protected $dataDirectory; |
23 | 23 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | class Meta implements MetaInterface |
19 | 19 | { |
20 | 20 | /** |
21 | - * @var array $config the configuration for this parser |
|
21 | + * @var array $config the configuration for this parser |
|
22 | 22 | */ |
23 | 23 | private $config; |
24 | 24 |
@@ -175,7 +175,7 @@ |
||
175 | 175 | ]; |
176 | 176 | |
177 | 177 | /** |
178 | - * @var array $templateVars |
|
178 | + * @var array $templateVars |
|
179 | 179 | */ |
180 | 180 | $templateVars = Registry::get('templateVars'); |
181 | 181 | $templateVars += $defaults; |
@@ -15,7 +15,7 @@ |
||
15 | 15 | class AbstractModel implements \ArrayAccess |
16 | 16 | { |
17 | 17 | /** |
18 | - * @var array the storage |
|
18 | + * @var array the storage |
|
19 | 19 | */ |
20 | 20 | protected $data = array(); |
21 | 21 |
@@ -18,7 +18,7 @@ |
||
18 | 18 | class Markdown implements ParserInterface |
19 | 19 | { |
20 | 20 | /** |
21 | - * @var mixed the configuration |
|
21 | + * @var mixed the configuration |
|
22 | 22 | */ |
23 | 23 | private $config; |
24 | 24 |
@@ -128,7 +128,7 @@ |
||
128 | 128 | $result = array(); |
129 | 129 | foreach ($files as $file) { |
130 | 130 | /** |
131 | - * @var \SplFileInfo $file |
|
131 | + * @var \SplFileInfo $file |
|
132 | 132 | */ |
133 | 133 | $result[] = $file->getPathname(); |
134 | 134 | } |