Browse Source

Trivial improvement to Laravel, while it is not documented, it has been a standard in Laravel to use tab as indentation and new line for curly bracket

Signed-off-by: crynobone <crynobone@gmail.com>
crynobone 12 years ago
parent
commit
fd86aef25a

+ 1 - 1
application/config/database.php

@@ -85,7 +85,7 @@ return array(
 			'password' => '',
 			'charset'  => 'utf8',
 			'prefix'   => '',
-            'schema'   => 'public',
+			'schema'   => 'public',
 		),
 
 		'sqlsrv' => array(

+ 1 - 1
laravel/auth/drivers/driver.php

@@ -128,7 +128,7 @@ abstract class Driver {
 
 		Session::forget($this->token());
 
-    $this->token = null;
+		$this->token = null;
 	}
 
 	/**

+ 2 - 1
laravel/database/eloquent/model.php

@@ -457,7 +457,8 @@ abstract class Model {
 	 *
 	 * @return void
 	 */
-	public function touch(){
+	public function touch()
+	{
 		$this->timestamp();
 		$this->save();
 	}