Skip to content

Commit fcb4d9d

Browse files
committed
Merge branch '8.x'
# Conflicts: # CHANGELOG.md
2 parents 21c3ef9 + 901879d commit fcb4d9d

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.7...master)
3+
## [Unreleased](https://github.com/laravel/laravel/compare/v8.6.8...master)
4+
5+
6+
## [v8.6.8 (2021-11-23)](https://github.com/laravel/laravel/compare/v8.6.7...v8.6.8)
7+
8+
### Changed
9+
- Order validation rules alphabetically ([#5728](https://github.com/laravel/laravel/pull/5728))
10+
- Removes the Console\Kernel::$commands property ([#5727](https://github.com/laravel/laravel/pull/5727))
411

512

613
## [v8.6.7 (2021-11-16)](https://github.com/laravel/laravel/compare/v8.6.6...v8.6.7)

app/Console/Kernel.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@
77

88
class Kernel extends ConsoleKernel
99
{
10-
/**
11-
* The Artisan commands provided by your application.
12-
*
13-
* @var array
14-
*/
15-
protected $commands = [
16-
//
17-
];
18-
1910
/**
2011
* Define the application's command schedule.
2112
*

lang/en/validation.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@
100100
'numeric' => 'The :attribute must be a number.',
101101
'password' => 'The password is incorrect.',
102102
'present' => 'The :attribute field must be present.',
103+
'prohibited' => 'The :attribute field is prohibited.',
104+
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
105+
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
106+
'prohibits' => 'The :attribute field prohibits :other from being present.',
103107
'regex' => 'The :attribute format is invalid.',
104108
'required' => 'The :attribute field is required.',
105109
'required_if' => 'The :attribute field is required when :other is :value.',
@@ -108,10 +112,6 @@
108112
'required_with_all' => 'The :attribute field is required when :values are present.',
109113
'required_without' => 'The :attribute field is required when :values is not present.',
110114
'required_without_all' => 'The :attribute field is required when none of :values are present.',
111-
'prohibited' => 'The :attribute field is prohibited.',
112-
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
113-
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
114-
'prohibits' => 'The :attribute field prohibits :other from being present.',
115115
'same' => 'The :attribute and :other must match.',
116116
'size' => [
117117
'numeric' => 'The :attribute must be :size.',

0 commit comments

Comments
 (0)