mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
* tests: add abstract class for all database related tests * tests: add abstract class for all ModelsCommand related tests * tests: add GenerateBasicPhpdoc test * tests: add CustomDate test * tests: remove MITM abstract TestCaseDatabase, not useful here * tests: skip new ModelsCommand test on Laravel < 6 * tests: remove CarbonImmutable checked Since we decided to skip for Laravel < 6.0 anyway, it's always present
10 lines
195 B
PHP
10 lines
195 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdoc\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Post extends Model
|
|
{
|
|
}
|