mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
23 lines
469 B
PHP
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
|
|
{
|
|
}
|