Fix camelCase duplicated properties generator. (#881)

* Fix camelCase duplicated properties generator.

* Add basic tests for camel case
This commit is contained in:
Sergio García
2020-03-10 12:17:29 +01:00
committed by GitHub
parent e743f44011
commit 90437012b8
3 changed files with 238 additions and 4 deletions
@@ -0,0 +1,9 @@
<?php declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocCamel\Models;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
}