exceptionContext()
Uygulamanın Handler
sınıfına yeni bir yöntem
// App/Exceptions/Handler.phpprotectedfunctionexceptionContext(Exception $e){ if ($e instanceof CustomException) { return ['custom_context' => $e->getCustomProperty()]; } returnparent::exceptionContext($e);}
Burada, model örneğini çoğaltan ve ilişkileri kaldıran bir örnek verilmiştir:/** * Create a new job instance. * * @param \App\Podcast $podcast * @return void */publicfunction__construct(Podcast $podcast){ $this->podcast = $podcast->withoutRelations();}
Aşağıdaki yeni özelliklerin ve güncellemelerin tam listesini ve GitHub'da 6.6.2 ile 6.7.0 arasındaki farkın tamamını görebilirsiniz . Laravel 6.0 için tam sürüm notları GitHub v6 changelog'da bulunmaktadır :
v6.7.0
Eklendi
- Eklendi
getQualifiedCreatedAtColumn()
vegetQualifiedUpdatedAtColumn()
yöntemleriHasTimestamps
( # 30792 ) - Eklenen
exceptionContext()
yöntemiExceptions\Handler
( # 30780 ) - Posta damgası taşımasının hata atması için yetenek eklendi ( # 30799 , 4320b82 )
- Eklendi
withoutRelations()
veunsetRelations()
yöntemleriHasRelationships
( # 30802 ) - Sayfalandırılmış
ResourceCollection::preserveQueryParameters()
api kaynaklarında koruma sorgu parametreleri için eklendi ( # 30745 , e92a708 )
Sabit
- Dize tabanlı veritabanı doğrulama kurallarındaki sabit modeller ( # 30790 )
- Sabit
Routing\RedirectController()
( # 30783 )
Yorum Yap