Commit ae711416 by Taylor Otwell

syntax cleanup in eloquent warehouse.

parent d2a74750
......@@ -47,7 +47,7 @@ class Warehouse {
*/
public static function forget($eloquent)
{
return (\System\DB::table(Meta::table(get_class($eloquent)))->where('id', '=', $eloquent->id)->delete() == 1);
return \System\DB::table(Meta::table(get_class($eloquent)))->where('id', '=', $eloquent->id)->delete() == 1;
}
/**
......
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