Commit 5c03938e authored by Taylor Otwell's avatar Taylor Otwell

Merge branch 'develop' into staging

parents a303d66a dbb4c169
......@@ -95,6 +95,7 @@ return array(
'series',
'sheep',
'species',
'moose',
),
/*
......
<?php namespace Laravel\Cache\Drivers; use Closure;
<?php namespace Laravel\Cache\Drivers;
abstract class Driver {
......
<?php namespace Laravel; defined('DS') or die('No direct script access.');
use Closure;
class Config {
/**
......
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Cookie {
......
......@@ -97,14 +97,14 @@ class Connection {
/**
* Execute a callback wrapped in a database transaction.
*
* @param Closure $callback
* @param callback $callback
* @return void
*/
public function transaction($callback)
{
$this->pdo->beginTransaction();
// After beginning the database transaction, we will call the Closure
// After beginning the database transaction, we will call the callback
// so that it can do its database work. If an exception occurs we'll
// rollback the transaction and re-throw back to the developer.
try
......
......@@ -129,9 +129,9 @@ class Query {
{
foreach ($this->model_includes() as $relationship => $constraints)
{
// If the relationship is nested, we will skip laoding it here and let
// If the relationship is nested, we will skip loading it here and let
// the load method parse and set the nested eager loads on the right
// relationship when it is getting ready to eager laod.
// relationship when it is getting ready to eager load.
if (str_contains($relationship, '.'))
{
continue;
......
......@@ -414,7 +414,10 @@ class Query {
// Once the callback has been run on the query, we will store the nested
// query instance on the where clause array so that it's passed to the
// query's query grammar instance when building.
$this->wheres[] = compact('type', 'query', 'connector');
if ($query->wheres !== null)
{
$this->wheres[] = compact('type', 'query', 'connector');
}
$this->bindings = array_merge($this->bindings, $query->bindings);
......
......@@ -35,6 +35,7 @@
- [Added `unless` structure to Blade template engine](/docs/views/templating#blade-unless).
- [Added Blade comments](/docs/views/templating#blade-comments).
- [Added simpler environment management](/docs/install#environments).
- Added `Blade::extend()` method to define custom blade compilers.
- Added `View::exists` method.
- Use [Memcached](http://php.net/manual/en/book.memcached.php) API instead of older [Memcache](http://php.net/manual/en/book.memcache.php) API.
- Added support for bundles outside of the bundle directory.
......
<?php namespace Laravel; use Closure, FilesystemIterator as fIterator;
<?php namespace Laravel; use FilesystemIterator as fIterator;
class File {
......
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Lang {
......@@ -103,7 +103,7 @@ class Lang {
* $line = Lang::line('validation.required')->get('sp');
*
* // Return a default value if the line doesn't exist
* $line = Lang::line('validation.required', null, 'Default');
* $line = Lang::line('validation.required')->get(null, 'Default');
* </code>
*
* @param string $language
......@@ -249,4 +249,4 @@ class Lang {
return (string) $this->get();
}
}
\ No newline at end of file
}
<?php namespace Laravel; use Closure;
<?php namespace Laravel;
class Request {
......
<?php namespace Laravel\Session;
use Closure;
use Laravel\Str;
use Laravel\Config;
use Laravel\Cookie;
......
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