Commit cb21cb8a authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #2754 from GrahamCampbell/fixes

Minor CS Fixes
parents 7a7835fe 75337061
* text=auto
\ No newline at end of file
* text=auto
......@@ -5,4 +5,4 @@ composer.lock
.env.local.php
.env.php
.DS_Store
Thumbs.db
\ No newline at end of file
Thumbs.db
# Contribution Guidelines
Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository!
\ No newline at end of file
Please submit all issues and pull requests to the [laravel/framework](http://github.com/laravel/framework) repository!
......@@ -15,4 +15,4 @@ return array(
);
\ No newline at end of file
);
......@@ -121,4 +121,4 @@ return array(
'pretend' => false,
);
\ No newline at end of file
);
......@@ -56,4 +56,4 @@ return array(
),
);
\ No newline at end of file
);
......@@ -17,4 +17,4 @@ return array(
'driver' => 'array',
);
\ No newline at end of file
);
......@@ -18,4 +18,4 @@ return array(
'driver' => 'array',
);
\ No newline at end of file
);
......@@ -28,4 +28,4 @@ return array(
'email' => '',
);
\ No newline at end of file
);
......@@ -15,4 +15,4 @@ class BaseController extends Controller {
}
}
}
\ No newline at end of file
}
......@@ -20,4 +20,4 @@ class HomeController extends BaseController {
return View::make('hello');
}
}
\ No newline at end of file
}
......@@ -14,4 +14,4 @@ class DatabaseSeeder extends Seeder {
// $this->call('UserTableSeeder');
}
}
\ No newline at end of file
}
......@@ -77,4 +77,4 @@ Route::filter('csrf', function()
{
throw new Illuminate\Session\TokenMismatchException;
}
});
\ No newline at end of file
});
<?php
<?php
return array(
......@@ -17,4 +17,4 @@ return array(
'next' => 'Next &raquo;',
);
\ No newline at end of file
);
......@@ -49,4 +49,4 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
return $this->email;
}
}
\ No newline at end of file
}
......@@ -14,4 +14,4 @@
Route::get('/', function()
{
return View::make('hello');
});
\ No newline at end of file
});
......@@ -14,4 +14,4 @@ class ExampleTest extends TestCase {
$this->assertTrue($this->client->getResponse()->isOk());
}
}
\ No newline at end of file
}
......@@ -10,4 +10,4 @@
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
</div>
</body>
</html>
\ No newline at end of file
</html>
......@@ -71,4 +71,4 @@ $status = $artisan->run();
$app->shutdown();
exit($status);
\ No newline at end of file
exit($status);
......@@ -15,4 +15,4 @@
<directory>./app/tests/</directory>
</testsuite>
</testsuites>
</phpunit>
\ No newline at end of file
</phpunit>
User-agent: *
Disallow:
Disallow:
## 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.
......
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