Commit ae2dc6a7 authored by Taylor Otwell's avatar Taylor Otwell

cleaning up view code.

parent 42f89146
...@@ -110,10 +110,11 @@ class View implements ArrayAccess { ...@@ -110,10 +110,11 @@ class View implements ArrayAccess {
} }
/** /**
* Allows people to check if a view passed in exists, handy for certain types of CMS development * Determine if the given view exists.
* @param string $view The view name (ex. site.home) *
* @param boolean $return_path Setting to TRUE will return the path found if it exists * @param string $view
* @return string / boolean * @param boolean $return_path
* @return string|bool
*/ */
public static function exists($view, $return_path = false) public static function exists($view, $return_path = false)
{ {
...@@ -130,6 +131,7 @@ class View implements ArrayAccess { ...@@ -130,6 +131,7 @@ class View implements ArrayAccess {
{ {
return $return_path ? $path : true; return $return_path ? $path : true;
} }
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment