rector/config/set/laravel/laravel50.yaml
2019-06-08 22:41:52 +02:00

17 lines
665 B
YAML

# see: https://laravel.com/docs/5.0/upgrade
services:
Rector\Rector\Class_\RenameClassRector:
Illuminate\Cache\CacheManager: 'Illuminate\Contracts\Cache\Repository'
# https://stackoverflow.com/a/24949656/1348344
Illuminate\Database\Eloquent\SoftDeletingTrait: 'Illuminate\Database\Eloquent\SoftDeletes'
Rector\Rector\MethodCall\RenameMethodRector:
Illuminate\Contracts\Pagination\Paginator:
links: 'render'
getFrom: 'firstItem'
getTo: 'lastItem'
getPerPage: 'perPage'
getCurrentPage: 'currentPage'
getLastPage: 'lastPage'
getTotal: 'total'