Browse Source

added with helper.

Taylor Otwell 13 years ago
parent
commit
d7fcd74a02
1 changed files with 11 additions and 0 deletions
  1. 11 0
      laravel/helpers.php

+ 11 - 0
laravel/helpers.php

@@ -362,4 +362,15 @@ function str_contains($haystack, $needle)
 function value($value)
 function value($value)
 {
 {
 	return ($value instanceof Closure) ? call_user_func($value) : $value;
 	return ($value instanceof Closure) ? call_user_func($value) : $value;
+}
+
+/**
+ * Short-cut for constructor method chaining.
+ *
+ * @param  mixed  $object
+ * @return mixed
+ */
+function with($object)
+{
+	return $object;
 }
 }