Commit 1a7f2bf2 by Jason Lewis

Merge pull request #1352 from laravie/patch/code-standard

[Code Standard] Slight improvement to use of tab over space and curly bracket 
parents 73d4b0b2 fd86aef2
...@@ -85,7 +85,7 @@ return array( ...@@ -85,7 +85,7 @@ return array(
'password' => '', 'password' => '',
'charset' => 'utf8', 'charset' => 'utf8',
'prefix' => '', 'prefix' => '',
'schema' => 'public', 'schema' => 'public',
), ),
'sqlsrv' => array( 'sqlsrv' => array(
......
...@@ -128,7 +128,7 @@ abstract class Driver { ...@@ -128,7 +128,7 @@ abstract class Driver {
Session::forget($this->token()); Session::forget($this->token());
$this->token = null; $this->token = null;
} }
/** /**
......
...@@ -457,7 +457,8 @@ abstract class Model { ...@@ -457,7 +457,8 @@ abstract class Model {
* *
* @return void * @return void
*/ */
public function touch(){ public function touch()
{
$this->timestamp(); $this->timestamp();
$this->save(); $this->save();
} }
......
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