File tree Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Expand file tree Collapse file tree 5 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1
1
# Release Notes for 6.x
2
2
3
- ## [ Unreleased] ( https://github.com/laravel/framework/compare/v6.18.16...6.x )
3
+ ## [ Unreleased] ( https://github.com/laravel/framework/compare/v6.18.17...6.x )
4
+
5
+
6
+ ## [ v6.18.17 (2020-06-02)] ( https://github.com/laravel/framework/compare/v6.18.16...v6.18.17 )
7
+
8
+ ### Added
9
+ - Support PHP 8's reflection API ([ #33039 ] ( https://github.com/laravel/framework/pull/33039 ) )
4
10
5
11
### Fixed
6
12
- Fixed ` Illuminate\Database\Eloquent\Collection::getQueueableRelations() ` ([ 00e9ed7] ( https://github.com/laravel/framework/commit/00e9ed76483ea6ad1264676e7b1095b23e16a433 ) )
Original file line number Diff line number Diff line change 31
31
}
32
32
},
33
33
"suggest" : {
34
- "illuminate/queue" : " Required to use closures when chaining jobs (^7.0)"
34
+ "illuminate/queue" : " Required to use closures when chaining jobs (^7.0). "
35
35
},
36
36
"config" : {
37
37
"sort-packages" : true
Original file line number Diff line number Diff line change 35
35
"suggest" : {
36
36
"dragonmantank/cron-expression" : " Required to use scheduler (^3.0)." ,
37
37
"guzzlehttp/guzzle" : " Required to use the ping methods on schedules (^6.3.1|^7.0)." ,
38
- "illuminate/bus" : " Required to use the scheduled job dispatcher (^8.0)" ,
39
- "illuminate/container" : " Required to use the scheduler (^8.0)" ,
40
- "illuminate/filesystem" : " Required to use the generator command (^8.0)" ,
41
- "illuminate/queue" : " Required to use closures for scheduled jobs (^8.0)"
38
+ "illuminate/bus" : " Required to use the scheduled job dispatcher (^8.0). " ,
39
+ "illuminate/container" : " Required to use the scheduler (^8.0). " ,
40
+ "illuminate/filesystem" : " Required to use the generator command (^8.0). " ,
41
+ "illuminate/queue" : " Required to use closures for scheduled jobs (^8.0). "
42
42
},
43
43
"config" : {
44
44
"sort-packages" : true
Original file line number Diff line number Diff line change 32
32
}
33
33
},
34
34
"suggest" : {
35
- "illuminate/http" : " Required for handling uploaded files (^7.0)" ,
35
+ "illuminate/http" : " Required for handling uploaded files (^7.0). " ,
36
36
"league/flysystem" : " Required to use the Flysystem local and FTP drivers (^1.0.34)." ,
37
37
"league/flysystem-aws-s3-v3" : " Required to use the Flysystem S3 driver (^1.0)." ,
38
38
"league/flysystem-cached-adapter" : " Required to use the Flysystem cache (^1.0)." ,
39
39
"league/flysystem-sftp" : " Required to use the Flysystem SFTP driver (^1.0)." ,
40
- "psr/http-message" : " Required to allow Storage::put to accept a StreamInterface (^1.0)"
40
+ "psr/http-message" : " Required to allow Storage::put to accept a StreamInterface (^1.0). "
41
41
},
42
42
"config" : {
43
43
"sort-packages" : true
Original file line number Diff line number Diff line change 2
2
3
3
namespace Illuminate \Foundation \Console ;
4
4
5
- use Exception ;
6
5
use Illuminate \Console \Command ;
6
+ use RuntimeException ;
7
7
use Symfony \Component \Filesystem \Filesystem as SymfonyFilesystem ;
8
8
9
9
class StorageLinkCommand extends Command
@@ -67,7 +67,7 @@ protected function links()
67
67
protected function getRelativeTarget ($ link , $ target )
68
68
{
69
69
if (! class_exists (SymfonyFilesystem::class)) {
70
- throw new Exception ( ' Please install the symfony/filesystem Composer package to create relative links . ' );
70
+ throw new RuntimeException ( ' To enable support for relative links, please install symfony/filesystem . ' );
71
71
}
72
72
73
73
return (new SymfonyFilesystem )->makePathRelative ($ target , dirname ($ link ));
You can’t perform that action at this time.
0 commit comments