Update method signature for getPropertiesFromTable

LaravelIdeHelper changed the visibility of `getPropertiesFromTable` from `protected` to `public` in this PR: https://github.com/barryvdh/laravel-ide-helper/pull/945
This commit is contained in:
Hendrik Heil 2021-04-02 12:48:03 +02:00 committed by GitHub
parent eed0e6f3b9
commit 3964e74c0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ class FakeModelsCommand extends \Barryvdh\LaravelIdeHelper\Console\ModelsCommand
*
* @param \Illuminate\Database\Eloquent\Model $model
*/
protected function getPropertiesFromTable($model) : void
public function getPropertiesFromTable($model) : void
{
$table_name = $model->getTable();