Browse Source

Minor cs fixes

Graham Campbell 10 years ago
parent
commit
753370615e

+ 1 - 1
.gitattributes

@@ -1 +1 @@
-* text=auto
+* text=auto

+ 1 - 1
.gitignore

@@ -5,4 +5,4 @@ composer.lock
 .env.local.php
 .env.php
 .DS_Store
-Thumbs.db
+Thumbs.db

+ 1 - 1
CONTRIBUTING.md

@@ -1,3 +1,3 @@
 # Contribution Guidelines
 
-Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository!
+Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository!

+ 1 - 1
app/config/compile.php

@@ -15,4 +15,4 @@ return array(
 
 
 
-);
+);

+ 1 - 1
app/config/mail.php

@@ -121,4 +121,4 @@ return array(
 
 	'pretend' => false,
 
-);
+);

+ 1 - 1
app/config/remote.php

@@ -56,4 +56,4 @@ return array(
 
 	),
 
-);
+);

+ 1 - 1
app/config/testing/cache.php

@@ -17,4 +17,4 @@ return array(
 
 	'driver' => 'array',
 
-);
+);

+ 1 - 1
app/config/testing/session.php

@@ -18,4 +18,4 @@ return array(
 
 	'driver' => 'array',
 
-);
+);

+ 1 - 1
app/config/workbench.php

@@ -28,4 +28,4 @@ return array(
 
 	'email' => '',
 
-);
+);

+ 1 - 1
app/controllers/BaseController.php

@@ -15,4 +15,4 @@ class BaseController extends Controller {
 		}
 	}
 
-}
+}

+ 1 - 1
app/controllers/HomeController.php

@@ -20,4 +20,4 @@ class HomeController extends BaseController {
 		return View::make('hello');
 	}
 
-}
+}

+ 1 - 1
app/database/seeds/DatabaseSeeder.php

@@ -14,4 +14,4 @@ class DatabaseSeeder extends Seeder {
 		// $this->call('UserTableSeeder');
 	}
 
-}
+}

+ 1 - 1
app/filters.php

@@ -77,4 +77,4 @@ Route::filter('csrf', function()
 	{
 		throw new Illuminate\Session\TokenMismatchException;
 	}
-});
+});

+ 2 - 2
app/lang/en/pagination.php

@@ -1,4 +1,4 @@
-<?php 
+<?php
 
 return array(
 
@@ -17,4 +17,4 @@ return array(
 
 	'next'     => 'Next &raquo;',
 
-);
+);

+ 1 - 1
app/models/User.php

@@ -49,4 +49,4 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
 		return $this->email;
 	}
 
-}
+}

+ 1 - 1
app/routes.php

@@ -14,4 +14,4 @@
 Route::get('/', function()
 {
 	return View::make('hello');
-});
+});

+ 1 - 1
app/tests/ExampleTest.php

@@ -14,4 +14,4 @@ class ExampleTest extends TestCase {
 		$this->assertTrue($this->client->getResponse()->isOk());
 	}
 
-}
+}

+ 1 - 1
app/views/emails/auth/reminder.blade.php

@@ -10,4 +10,4 @@
 			To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
 		</div>
 	</body>
-</html>
+</html>

+ 1 - 1
artisan

@@ -71,4 +71,4 @@ $status = $artisan->run();
 
 $app->shutdown();
 
-exit($status);
+exit($status);

+ 1 - 1
phpunit.xml

@@ -15,4 +15,4 @@
             <directory>./app/tests/</directory>
         </testsuite>
     </testsuites>
-</phpunit>
+</phpunit>

+ 1 - 1
public/robots.txt

@@ -1,2 +1,2 @@
 User-agent: *
-Disallow: 
+Disallow:

+ 1 - 1
readme.md

@@ -1,6 +1,6 @@
 ## Laravel PHP Framework
 
-[![Latest Stable Version](https://poser.pugx.org/laravel/framework/version.png)](https://packagist.org/packages/laravel/framework) [![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.png)](https://packagist.org/packages/laravel/framework) [![Build Status](https://travis-ci.org/laravel/framework.png)](https://travis-ci.org/laravel/framework) [![License](https://poser.pugx.org/laravel/framework/license.png)](https://packagist.org/packages/laravel/framework) 
+[![Latest Stable Version](https://poser.pugx.org/laravel/framework/version.png)](https://packagist.org/packages/laravel/framework) [![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.png)](https://packagist.org/packages/laravel/framework) [![Build Status](https://travis-ci.org/laravel/framework.png)](https://travis-ci.org/laravel/framework) [![License](https://poser.pugx.org/laravel/framework/license.png)](https://packagist.org/packages/laravel/framework)
 
 Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, and caching.