@@ -61,6 +61,7 @@ public function __construct($options = null)
6161 *
6262 * @param string $path
6363 * @param string $namespace
64+ * @return void
6465 * @throws ViewException\InvalidArgumentException for an invalid path
6566 * @throws ViewException\InvalidArgumentException for an invalid namespace
6667 */
@@ -94,6 +95,7 @@ public function addPath($path, $namespace = self::DEFAULT_NAMESPACE)
9495 * Add many paths to the stack at once.
9596 *
9697 * @param array $paths
98+ * @return void
9799 */
98100 public function addPaths (array $ paths )
99101 {
@@ -110,6 +112,7 @@ public function addPaths(array $paths)
110112 * Overwrite all existing paths with the provided paths.
111113 *
112114 * @param array|Traversable $paths
115+ * @return void
113116 * @throws ViewException\InvalidArgumentException for invalid path types.
114117 */
115118 public function setPaths ($ paths )
@@ -131,6 +134,8 @@ public function setPaths($paths)
131134
132135 /**
133136 * Clear all paths.
137+ *
138+ * @return void
134139 */
135140 public function clearPaths ()
136141 {
@@ -140,9 +145,9 @@ public function clearPaths()
140145 /**
141146 * Retrieve the filesystem path to a view script
142147 *
143- * @param string $name
144- * @param null|RendererInterface $renderer
145- * @return string
148+ * @param string $name
149+ * @param null|RendererInterface $renderer
150+ * @return false| string
146151 * @throws ViewException\DomainException
147152 */
148153 public function resolve ($ name , RendererInterface $ renderer = null )
0 commit comments