repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/QueryScopes/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/QueryScopes/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes\Models; use Illuminate\Database\Eloquent\Attributes\Scope; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; /** * @method static Builder<static>|Comment local() Scope using th...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/QueryScopes/Models/Comment.php
tests/Console/ModelsCommand/QueryScopes/Models/Comment.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes\Models; use Illuminate\Database\Eloquent\Attributes\Scope; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; class Comment extends Model { /** * @comment Scope using th...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/QueryScopes/Models/PostParent.php
tests/Console/ModelsCommand/QueryScopes/Models/PostParent.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes\Models; use Illuminate\Database\Eloquent\Model; class PostParent extends Model { public function scopeActive($query) { return $query; } }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/QueryScopes/Models/Post.php
tests/Console/ModelsCommand/QueryScopes/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes\Models; class Post extends PostParent { public function scopePublic($query) { return $query; } }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Getter/Test.php
tests/Console/ModelsCommand/Getter/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Getter; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Getter/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/Getter/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Getter\Models; use DateTime; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property-read int|null $attribute_return_type_int_or_null * @property-read array $attribute_returns_array * @property-rea...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Getter/Models/Simple.php
tests/Console/ModelsCommand/Getter/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Getter\Models; use DateTime; use Illuminate\Database\Eloquent\Model; class Simple extends Model { /** * @return int */ public function getAttributeWithIntReturnPhpdocAttribute() { } public f...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Test.php
tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqnInExternalFile; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { pub...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/__snapshots__/Test__test__1.php
<?php // @formatter:off // phpcs:ignoreFile /** * A helper file for your Eloquent Models * Copy the phpDocs from this file to the correct Model, * And remove them from this file, to prevent double declarations. * * @author Barry vd. Heuvel <barryvdh@gmail.com> */ namespace Barryvdh\LaravelIdeHelper\Tests\Conso...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Builders/EMaterialQueryBuilder.php
tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Builders/EMaterialQueryBuilder.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqnInExternalFile\Builders; use Illuminate\Database\Eloquent\Builder; class EMaterialQueryBuilder extends Builder { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Models/Post.php
tests/Console/ModelsCommand/GeneratePhpdocWithFqnInExternalFile/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqnInExternalFile\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqnInExternalFile\Builders\EMaterialQueryBuilder; use Illuminate\Database\Eloquent\Model; class Post ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Test.php
tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithMixin; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithMixin/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GeneratePhpdocWithMixin/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithMixin\Models; use Illuminate\Database\Eloquent\Model; /** * @property $someProp * @method someMethod(string $method) * @mixin IdeHelperFinalPost */ final class FinalPost extends Model { } <?php decl...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Models/FinalPost.php
tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Models/FinalPost.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithMixin\Models; use Illuminate\Database\Eloquent\Model; /** * @property $someProp * @method someMethod(string $method) * @mixin IdeHelperPost */ final class FinalPost extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Models/Post.php
tests/Console/ModelsCommand/GeneratePhpdocWithMixin/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithMixin\Models; use Illuminate\Database\Eloquent\Model; /** * @property $someProp * @method someMethod(string $method) * @mixin IdeHelperPost */ class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/MagicWhere/Test.php
tests/Console/ModelsCommand/MagicWhere/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\MagicWhere; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { protected function getEnviro...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/MagicWhere/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/MagicWhere/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\MagicWhere\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string|null $char_nullable * @property string $char_not_nullable * @property string|null $string_nullable * @property str...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/MagicWhere/Models/Post.php
tests/Console/ModelsCommand/MagicWhere/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\MagicWhere\Models; use Illuminate\Database\Eloquent\Model; class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Pivot/Test.php
tests/Console/ModelsCommand/Pivot/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Pivot/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/Pivot/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots\CustomPivot; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots\DifferentCustomPivot; use Illuminate\Da...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Pivot/Models/ModelWithPivot.php
tests/Console/ModelsCommand/Pivot/Models/ModelWithPivot.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots\CustomPivot; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots\DifferentCustomPivot; use Illuminate\Da...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Pivot/Models/Pivots/DifferentCustomPivot.php
tests/Console/ModelsCommand/Pivot/Models/Pivots/DifferentCustomPivot.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots; use Illuminate\Database\Eloquent\Relations\Pivot; class DifferentCustomPivot extends Pivot { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Pivot/Models/Pivots/CustomPivot.php
tests/Console/ModelsCommand/Pivot/Models/Pivots/CustomPivot.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Pivot\Models\Pivots; use Illuminate\Database\Eloquent\Relations\Pivot; class CustomPivot extends Pivot { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Test.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilder; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/__snapshots__/Test__test__1.php
<?php // @formatter:off // phpcs:ignoreFile /** * A helper file for your Eloquent Models * Copy the phpDocs from this file to the correct Model, * And remove them from this file, to prevent double declarations. * * @author Barry vd. Heuvel <barryvdh@gmail.com> */ namespace Barryvdh\LaravelIdeHelper\Tests\Conso...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Builders/PostExternalQueryBuilder.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Builders/PostExternalQueryBuilder.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilder\Builders; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Illuminate\Database\Eloquent\Builder; class PostExternalQueryBuilder extends Builder { public function isAct...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Models/Post.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilder/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilder\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilder\Builders\PostExternalQueryBuilder; use Illuminate\Database\Eloquent\Mode...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/Test.php
tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocWithEloquentHelper; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { p...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocWithEloquentHelper\Models; use Illuminate\Database\Eloquent\Model; /** * * * @property int $id * @property string|null $char_nullable * @property string $char_not_nullable * @property string|null...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/Models/Post.php
tests/Console/ModelsCommand/GenerateBasicPhpdocWithEloquentHelper/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocWithEloquentHelper\Models; use Illuminate\Database\Eloquent\Model; class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____simple_casts_table.php
tests/Console/ModelsCommand/migrations/____simple_casts_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class SimpleCastsTable extends Migration { public function up(): void { Schema::create('simple_casts', static function (Blueprint $table) { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____simple_table.php
tests/Console/ModelsCommand/migrations/____simple_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class SimpleTable extends Migration { public function up(): void { Schema::create('simples', function (Blueprint $table) { $table->...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____morphs_table.php
tests/Console/ModelsCommand/migrations/____morphs_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class MorphsTable extends Migration { public function up(): void { Schema::create('morphs', function (Blueprint $table) { $table->m...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____custom_casts_table.php
tests/Console/ModelsCommand/migrations/____custom_casts_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CustomCastsTable extends Migration { public function up(): void { Schema::create('custom_casts', static function (Blueprint $table) { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____custom_dates_table.php
tests/Console/ModelsCommand/migrations/____custom_dates_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CustomDatesTable extends Migration { public function up(): void { Schema::create('custom_dates', function (Blueprint $table) { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____posts_table.php
tests/Console/ModelsCommand/migrations/____posts_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class PostsTable extends Migration { public function up(): void { Schema::create('posts', function (Blueprint $table) { $table->big...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____advanced_casts_table.php
tests/Console/ModelsCommand/migrations/____advanced_casts_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AdvancedCastsTable extends Migration { public function up(): void { Schema::create('advanced_casts', static function (Blueprint $table) {...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____belongs_to_variation_table.php
tests/Console/ModelsCommand/migrations/____belongs_to_variation_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class BelongsToVariationTable extends Migration { public function up(): void { Schema::create('belongs_to_variations', function (Blueprint $tab...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/migrations/____backed_attribute_table.php
tests/Console/ModelsCommand/migrations/____backed_attribute_table.php
<?php declare(strict_types=1); use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class BackedAttributeTable extends Migration { public function up(): void { Schema::create('backed_attributes', function (Blueprint $table) { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/AllowGlobDirectory/Test.php
tests/Console/ModelsCommand/AllowGlobDirectory/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AllowGlobDirectory; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; final class Test extends AbstractModelsCommand { /** @var strin...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/AllowGlobDirectory/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/AllowGlobDirectory/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AllowGlobDirectory\Services\Post\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string|null $char_nullable * @property string $char_not_nullable * @property string|null $string_nul...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/AllowGlobDirectory/Services/Post/Models/Post.php
tests/Console/ModelsCommand/AllowGlobDirectory/Services/Post/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AllowGlobDirectory\Services\Post\Models; use Illuminate\Database\Eloquent\Model; class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Comment/Test.php
tests/Console/ModelsCommand/Comment/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Comment; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Comment/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/Comment/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Comment\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Database\Eloquent\Relations\MorphTo; /** * @pr...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Comment/Models/Simple.php
tests/Console/ModelsCommand/Comment/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Comment\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Database\Eloquent\Relations\MorphTo; class Simp...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SimpleCasts/Test.php
tests/Console/ModelsCommand/SimpleCasts/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SimpleCasts; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): voi...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SimpleCasts/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/SimpleCasts/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SimpleCasts\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $cast_to_int * @property int $cast_to_integer * @property float $cast_to_real * @property float $cast_to_float * @property float $cast_t...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SimpleCasts/Models/SimpleCast.php
tests/Console/ModelsCommand/SimpleCasts/Models/SimpleCast.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SimpleCasts\Models; use Illuminate\Database\Eloquent\Model; class SimpleCast extends Model { protected $casts = [ 'cast_to_int' => 'int', 'cast_to_integer' => 'integer', 'cast_to_real' => 'real...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Test.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsComm...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Builders\PostExternalQueryBuilder; use Illuminate\Database...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Builders/PostExternalQueryBuilder.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Builders/PostExternalQueryBuilder.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Builders; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Illuminate\Database\Eloquent\Builder; class PostExternalQueryBuilder extends Builder { public functio...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Models/Post.php
tests/Console/ModelsCommand/GeneratePhpdocWithExternalEloquentBuilderWithFqn/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithExternalEloquentBuilderWithFqn\Builders\PostExternalQueryBuilder; use Illuminate\Database...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SoftDeletes/Test.php
tests/Console/ModelsCommand/SoftDeletes/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SoftDeletes; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): voi...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SoftDeletes/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/SoftDeletes/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SoftDeletes\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; /** * @property int $id * @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery() * ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/SoftDeletes/Models/Simple.php
tests/Console/ModelsCommand/SoftDeletes/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\SoftDeletes\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Simple extends Model { use SoftDeletes; }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/Test.php
tests/Console/ModelsCommand/ModelHooks/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Hooks\C...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/ModelHooks/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property-read string $custom * @method static \Illuminate\Database\Eloquent\Builder<static>|Simple custom($custom) * @method static...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/Hooks/UnsetMethod.php
tests/Console/ModelsCommand/ModelHooks/Hooks/UnsetMethod.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Hooks; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Contracts\ModelHookInterface; use Illuminate\Database\Eloquent\Model; class UnsetMethod implements ModelHookInterface { ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/Hooks/CustomProperty.php
tests/Console/ModelsCommand/ModelHooks/Hooks/CustomProperty.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Hooks; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Contracts\ModelHookInterface; use Illuminate\Database\Eloquent\Model; class CustomProperty implements ModelHookInterface...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/Hooks/CustomMethod.php
tests/Console/ModelsCommand/ModelHooks/Hooks/CustomMethod.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Hooks; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Contracts\ModelHookInterface; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; class Cu...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ModelHooks/Models/Simple.php
tests/Console/ModelsCommand/ModelHooks/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ModelHooks\Models; use Illuminate\Database\Eloquent\Model; class Simple extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Variadic/Test.php
tests/Console/ModelsCommand/Variadic/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Variadic; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Variadic/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/Variadic/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Variadic\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @method static Builder<static>|Simple newModelQuery() * @method static Builder<static>|Simple...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Variadic/Models/Simple.php
tests/Console/ModelsCommand/Variadic/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Variadic\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; class Simple extends Model { public function scopeWhereVariadic(Builder $query, ...$values): void { } pub...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/Test.php
tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithForcedFqn; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { protected f...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithForcedFqn\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; /** * @property int $id * @property string|nu...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/Models/Post.php
tests/Console/ModelsCommand/GeneratePhpdocWithForcedFqn/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithForcedFqn\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; class Post extends Model { use SoftDeletes;...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ResetAndSmartReset/Test.php
tests/Console/ModelsCommand/ResetAndSmartReset/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ResetAndSmartReset; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testNoReset__1.php
tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testNoReset__1.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 PhpUnnecessaryFullyQuali...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testSmartReset__1.php
tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testSmartReset__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\ResetAndSmartReset\Models; use Illuminate\Database\Eloquent\Model; /** * Text of existing phpdoc * * @property int $id * @method static \Illuminate\Database\Eloquent\Builder|Simple newModelQuery() * @method static \I...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testReset__1.php
tests/Console/ModelsCommand/ResetAndSmartReset/__snapshots__/Test__testReset__1.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 * @property int $id * @method static \I...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/ResetAndSmartReset/Models/Simple.php
tests/Console/ModelsCommand/ResetAndSmartReset/Models/Simple.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 PhpUnnecessaryFullyQuali...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/Test.php
tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocFinal; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public functio...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocFinal\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string|null $char_nullable * @property string $char_not_nullable * @property string|null $string_nullable *...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/Models/Post.php
tests/Console/ModelsCommand/GenerateBasicPhpdocFinal/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocFinal\Models; use Illuminate\Database\Eloquent\Model; final class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/RelationCountProperties/Test.php
tests/Console/ModelsCommand/RelationCountProperties/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\RelationCountProperties; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { protected funct...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/RelationCountProperties/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/RelationCountProperties/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\RelationCountProperties\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; /** * @property int $id * @property string|null $char_nullable * @property string $char_not_nu...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/RelationCountProperties/Models/Post.php
tests/Console/ModelsCommand/RelationCountProperties/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\RelationCountProperties\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; class Post extends Model { public function relationHasMany(): HasMany { return $t...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/UnionTypes/Test.php
tests/Console/ModelsCommand/UnionTypes/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\UnionTypes; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/UnionTypes/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/UnionTypes/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\UnionTypes\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Query\Builder; /** * @property-read string|int|null $foo * @property-read \Illuminat...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/UnionTypes/Models/UnionTypeModel.php
tests/Console/ModelsCommand/UnionTypes/Models/UnionTypeModel.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\UnionTypes\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Query\Builder; class UnionTypeModel extends Model { public function scopeWithUnion...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Test.php
tests/Console/ModelsCommand/Factories/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; use Closure; use Illuminate\Database\Eloquent\Factories\Factory; use Illumina...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/__snapshots__/Test__testFactory__1.php
tests/Console/ModelsCommand/Factories/__snapshots__/Test__testFactory__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\CustomSpace\ModelWithCustomNamespaceFactory; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Mod...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/CustomSpace/ModelWithCustomNamespaceFactory.php
tests/Console/ModelsCommand/Factories/CustomSpace/ModelWithCustomNamespaceFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\CustomSpace; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models\ModelWithCustomNamespace; use Illuminate\Database\Eloquent\Factories\Factory; class ModelWithCustomNamespaceFactory extends...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Models/ModelWithNestedFactory.php
tests/Console/ModelsCommand/Factories/Models/ModelWithNestedFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models; class ModelWithNestedFactory extends ModelWithFactory { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Models/ModelWithCustomNamespace.php
tests/Console/ModelsCommand/Factories/Models/ModelWithCustomNamespace.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\CustomSpace\ModelWithCustomNamespaceFactory; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Mod...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Models/ModelWithFactory.php
tests/Console/ModelsCommand/Factories/Models/ModelWithFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ModelWithFactory extends Model { use HasFactory; }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Models/ModelWithoutFactory.php
tests/Console/ModelsCommand/Factories/Models/ModelWithoutFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class ModelWithoutFactory extends Model { use HasFactory; }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Factories/ModelWithNestedFactoryFactory.php
tests/Console/ModelsCommand/Factories/Factories/ModelWithNestedFactoryFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Factories; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models\ModelWithNestedFactory; use Illuminate\Database\Eloquent\Factories\Factory; class ModelWithNestedFactoryFactory extends Facto...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Factories/Factories/ModelWithFactoryFactory.php
tests/Console/ModelsCommand/Factories/Factories/ModelWithFactoryFactory.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Factories; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Factories\Models\ModelWithFactory; use Illuminate\Database\Eloquent\Factories\Factory; class ModelWithFactoryFactory extends Factory { /**...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/CustomCollection/Test.php
tests/Console/ModelsCommand/CustomCollection/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test()...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/CustomCollection/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/CustomCollection/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection\Collections\SimpleCollection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/CustomCollection/Collections/SimpleCollection.php
tests/Console/ModelsCommand/CustomCollection/Collections/SimpleCollection.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection\Collections; use Illuminate\Database\Eloquent\Collection; class SimpleCollection extends Collection { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/CustomCollection/Models/Simple.php
tests/Console/ModelsCommand/CustomCollection/Models/Simple.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection\Models; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomCollection\Collections\SimpleCollection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; ...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/Test.php
tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocCamel; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { protected func...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocCamel\Models; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string|null $charNullable * @property string $charNotNullable * @property string|null $stringNullable * @pr...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/Models/Post.php
tests/Console/ModelsCommand/GenerateBasicPhpdocCamel/Models/Post.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdocCamel\Models; use Illuminate\Database\Eloquent\Model; class Post extends Model { }
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Attributes/Test.php
tests/Console/ModelsCommand/Attributes/Test.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Attributes; use Barryvdh\LaravelIdeHelper\Console\ModelsCommand; use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand; class Test extends AbstractModelsCommand { public function test(): void...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Attributes/__snapshots__/Test__test__1.php
tests/Console/ModelsCommand/Attributes/__snapshots__/Test__test__1.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Attributes\Models; use Illuminate\Database\Eloquent\Casts\Attribute; use Illuminate\Database\Eloquent\Model; /** * @property int $id * @property string|null $name * @property string|null $name_read * @property string|...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false
barryvdh/laravel-ide-helper
https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/Console/ModelsCommand/Attributes/Models/BackedAttribute.php
tests/Console/ModelsCommand/Attributes/Models/BackedAttribute.php
<?php declare(strict_types=1); namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Attributes\Models; use Illuminate\Database\Eloquent\Casts\Attribute; use Illuminate\Database\Eloquent\Model; class BackedAttribute extends Model { protected function name(): Attribute { return new Attribut...
php
MIT
2ac73f2953f59e43b798e959a352e09305cb5320
2026-01-04T15:02:42.026190Z
false