Skip to content

Commit cb21cb8

Browse files
committed
Merge pull request laravel#2754 from GrahamCampbell/fixes
Minor CS Fixes
2 parents 7a7835f + 7533706 commit cb21cb8

22 files changed

+23
-23
lines changed

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* text=auto
1+
* text=auto

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ composer.lock
55
.env.local.php
66
.env.php
77
.DS_Store
8-
Thumbs.db
8+
Thumbs.db

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Contribution Guidelines
22

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

app/config/compile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515

1616

1717

18-
);
18+
);

app/config/mail.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121

122122
'pretend' => false,
123123

124-
);
124+
);

app/config/remote.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656

5757
),
5858

59-
);
59+
);

app/config/testing/cache.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
'driver' => 'array',
1919

20-
);
20+
);

app/config/testing/session.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
'driver' => 'array',
2020

21-
);
21+
);

app/config/workbench.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828

2929
'email' => '',
3030

31-
);
31+
);

app/controllers/BaseController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ protected function setupLayout()
1515
}
1616
}
1717

18-
}
18+
}

app/controllers/HomeController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ public function showWelcome()
2020
return View::make('hello');
2121
}
2222

23-
}
23+
}

app/database/seeds/DatabaseSeeder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public function run()
1414
// $this->call('UserTableSeeder');
1515
}
1616

17-
}
17+
}

app/filters.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@
7777
{
7878
throw new Illuminate\Session\TokenMismatchException;
7979
}
80-
});
80+
});

app/lang/en/pagination.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php
1+
<?php
22

33
return array(
44

@@ -17,4 +17,4 @@
1717

1818
'next' => 'Next &raquo;',
1919

20-
);
20+
);

app/models/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ public function getReminderEmail()
4949
return $this->email;
5050
}
5151

52-
}
52+
}

app/routes.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
Route::get('/', function()
1515
{
1616
return View::make('hello');
17-
});
17+
});

app/tests/ExampleTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public function testBasicExample()
1414
$this->assertTrue($this->client->getResponse()->isOk());
1515
}
1616

17-
}
17+
}

app/views/emails/auth/reminder.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
1111
</div>
1212
</body>
13-
</html>
13+
</html>

artisan

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ $status = $artisan->run();
7171

7272
$app->shutdown();
7373

74-
exit($status);
74+
exit($status);

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
<directory>./app/tests/</directory>
1616
</testsuite>
1717
</testsuites>
18-
</phpunit>
18+
</phpunit>

public/robots.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
User-agent: *
2-
Disallow:
2+
Disallow:

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Laravel PHP Framework
22

3-
[![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)
3+
[![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)
44

55
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.
66

0 commit comments

Comments
 (0)