Files
barryvdh_laravel-ide-helper/tests/Console/ModelsCommand/ResetAndSmartReset/Models/Simple.php
T
Barry vd. Heuvel 7549f58a30 Smarter reset (#1603)
* Smarter reset

* Changelog

* Fix phpdocs
2024-10-28 12:21:53 +01:00

23 lines
469 B
PHP

<?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ResetAndSmartReset\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Text of existing phpdoc
*
* @implements \ArrayAccess
* @noinspection PhpUnreachableStatementInspection
* @noinspection PhpUnnecessaryFullyQualifiedNameInspection
* @property string $foo
* @property-read string $bar
* @method fooBar()
* @mixin \Eloquent
*/
class Simple extends Model
{
}