@@ -133,7 +133,7 @@ |
||
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 | { |
@@ -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); |
@@ -76,7 +76,7 @@ |
||
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) |
@@ -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) { |
@@ -117,7 +117,7 @@ |
||
117 | 117 | if (!is_callable([$this, $method])) { |
118 | 118 | $class = get_class($this); |
119 | 119 | throw new \RuntimeException( |
120 | - "Event $eventKey can't invoke $class::$method(). Not callable.", |
|
120 | + "event $eventKey can't invoke $class::$method(). Not callable.", |
|
121 | 121 | 1428564865 |
122 | 122 | ); |
123 | 123 | } |
@@ -20,17 +20,17 @@ |
||
20 | 20 | { |
21 | 21 | |
22 | 22 | /** |
23 | - * @var string plugin attributes |
|
23 | + * @var string plugin attributes |
|
24 | 24 | */ |
25 | 25 | private $plugin = []; |
26 | 26 | |
27 | 27 | /** |
28 | - * @var array subscribed Phile events ['eventName' => 'classMethodToCall'] |
|
28 | + * @var array subscribed Phile events ['eventName' => 'classMethodToCall'] |
|
29 | 29 | */ |
30 | 30 | protected $events = []; |
31 | 31 | |
32 | 32 | /** |
33 | - * @var array the plugin settings |
|
33 | + * @var array the plugin settings |
|
34 | 34 | */ |
35 | 35 | protected $settings = []; |
36 | 36 |
@@ -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 |
@@ -21,8 +21,8 @@ |
||
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 |
@@ -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 |