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 |
|---|---|---|---|---|---|---|---|---|
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/InternalUtilsTest.php | tests/InternalUtilsTest.php | <?php
namespace GuzzleHttp\Test;
use GuzzleHttp\Psr7;
use GuzzleHttp\Utils;
use PHPUnit\Framework\TestCase;
class InternalUtilsTest extends TestCase
{
public function testCurrentTime()
{
self::assertGreaterThan(0, Utils::currentTime());
}
/**
* @requires extension idn
*/
public... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/CurlHandlerTest.php | tests/Handler/CurlHandlerTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Handler\CurlHandler;
use GuzzleHttp\Promise\FulfilledPromise;
use GuzzleHttp\Psr7;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Tests\Server;
use GuzzleHttp\Utils;
use PHPUnit\Framework\Test... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/ProxyTest.php | tests/Handler/ProxyTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\Handler\Proxy;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\RequestOptions;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Handler\Proxy
*/
class ProxyTest extends TestCase
{
public function testSendsToNonSync... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/CurlMultiHandlerTest.php | tests/Handler/CurlMultiHandlerTest.php | <?php
namespace GuzzleHttp\Tests\Handler;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Handler\CurlMultiHandler;
use GuzzleHttp\Promise as P;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Tests\Helpers;
use GuzzleHttp\Tests\Server;
use GuzzleHttp\Utils;
use PHPUnit\Framework\T... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/StreamHandlerTest.php | tests/Handler/StreamHandlerTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Handler\StreamHandler;
use GuzzleHttp\Psr7;
use GuzzleHttp\Psr7\FnStream;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\RequestOptions;
use GuzzleHt... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/MockHandlerTest.php | tests/Handler/MockHandlerTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Exception\BadResponseException;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Psr7\Stream;
use GuzzleHttp\TransferStats;
use PHPUnit\Framework\TestCase;
/... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/EasyHandleTest.php | tests/Handler/EasyHandleTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Handler\EasyHandle;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Handler\EasyHandle
*/
class EasyHandleTest extends TestCase
{
public function testEnsuresHandleExists()
{
$easy = new EasyHandle();
unset($easy->handle);
... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/CurlFactoryTest.php | tests/Handler/CurlFactoryTest.php | <?php
namespace GuzzleHttp\Test\Handler;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Handler;
use GuzzleHttp\Handler\CurlFactory;
use GuzzleHttp\Handler\EasyHandle;
use GuzzleHttp\Promise as P;
use GuzzleHttp\Psr7;
use GuzzleHttp\Tests\Helpers;
use GuzzleHttp\T... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | true |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Handler/Network/StreamHandlerTest.php | tests/Handler/Network/StreamHandlerTest.php | <?php
namespace GuzzleHttp\Test\Handler\Network;
use GuzzleHttp\Client;
use GuzzleHttp\Handler\StreamHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\RequestOptions;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Handler\StreamHandler
*/
class StreamHandlerTest extends T... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Exception/ConnectExceptionTest.php | tests/Exception/ConnectExceptionTest.php | <?php
namespace GuzzleHttp\Tests\Exception;
use GuzzleHttp\Exception\ConnectException;
use GuzzleHttp\Psr7\Request;
use PHPUnit\Framework\TestCase;
use Psr\Http\Client\NetworkExceptionInterface;
use Psr\Http\Client\RequestExceptionInterface;
/**
* @covers \GuzzleHttp\Exception\ConnectException
*/
class ConnectExce... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Exception/BadResponseExceptionTest.php | tests/Exception/BadResponseExceptionTest.php | <?php
namespace GuzzleHttp\Tests\Exception;
use GuzzleHttp\Exception\BadResponseException;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use PHPUnit\Framework\TestCase;
class BadResponseExceptionTest extends TestCase
{
public function testHasNoResponse()
{
$req = new Request('GET', '/');... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Exception/RequestExceptionTest.php | tests/Exception/RequestExceptionTest.php | <?php
namespace GuzzleHttp\Tests\Exception;
use GuzzleHttp\Exception\ClientException;
use GuzzleHttp\Exception\RequestException;
use GuzzleHttp\Exception\ServerException;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use GuzzleHttp\Psr7\Stream;
use PHPUnit\Framework\TestCase;
use Psr\Http\Client\NetworkE... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Cookie/FileCookieJarTest.php | tests/Cookie/FileCookieJarTest.php | <?php
namespace GuzzleHttp\Tests\CookieJar;
use GuzzleHttp\Cookie\FileCookieJar;
use GuzzleHttp\Cookie\SetCookie;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Cookie\FileCookieJar
*/
class FileCookieJarTest extends TestCase
{
private $file;
public function setUp(): void
{
$this->f... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Cookie/SetCookieTest.php | tests/Cookie/SetCookieTest.php | <?php
namespace GuzzleHttp\Tests\CookieJar;
use GuzzleHttp\Cookie\SetCookie;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Cookie\SetCookie
*/
class SetCookieTest extends TestCase
{
public function testInitializesDefaultValues()
{
$cookie = new SetCookie();
self::assertSame('/',... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Cookie/CookieJarTest.php | tests/Cookie/CookieJarTest.php | <?php
namespace GuzzleHttp\Tests\CookieJar;
use DateInterval;
use DateTime;
use DateTimeImmutable;
use GuzzleHttp\Cookie\CookieJar;
use GuzzleHttp\Cookie\SetCookie;
use GuzzleHttp\Psr7\Request;
use GuzzleHttp\Psr7\Response;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Cookie\CookieJar
*/
class CookieJ... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
guzzle/guzzle | https://github.com/guzzle/guzzle/blob/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4/tests/Cookie/SessionCookieJarTest.php | tests/Cookie/SessionCookieJarTest.php | <?php
namespace GuzzleHttp\Tests\CookieJar;
use GuzzleHttp\Cookie\SessionCookieJar;
use GuzzleHttp\Cookie\SetCookie;
use PHPUnit\Framework\TestCase;
/**
* @covers \GuzzleHttp\Cookie\SessionCookieJar
*/
class SessionCookieJarTest extends TestCase
{
private $sessionVar;
public function setUp(): void
{
... | php | MIT | b51ac707cfa420b7bfd4e4d5e510ba8008e822b4 | 2026-01-04T15:02:34.279082Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/.php-cs-fixer.tests.php | .php-cs-fixer.tests.php | <?php
require __DIR__ . '/vendor/autoload.php';
$finder = PhpCsFixer\Finder::create()
->in(__DIR__ . '/tests')
->exclude('__snapshots__');
$config = require __DIR__ . '/.php-cs-fixer.common.php';
// Additional rules for tests
$config = array_merge(
$config,
[
'declare_strict_types' => true,
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/.php-cs-fixer.common.php | .php-cs-fixer.common.php | <?php
// Share common rules between non-test and test files
return [
'@PSR12' => true,
'blank_line_after_opening_tag' => true,
'braces' => [
'allow_single_line_anonymous_class_with_empty_body' => true,
],
'compact_nullable_typehint' => true,
'declare_equal_normalize' => true,
'lower... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/.php-cs-fixer.dist.php | .php-cs-fixer.dist.php | <?php
require __DIR__ . '/vendor/autoload.php';
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('tests');
$config = require __DIR__ . '/.php-cs-fixer.common.php';
return (new PhpCsFixer\Config())
->setFinder($finder)
->setRules($config)
->setRiskyAllowed(true)
->setCacheFile(__D... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/middleware.php | php-templates/middleware.php | <?php
return collect(app("Illuminate\Contracts\Http\Kernel")->getMiddlewareGroups())
->merge(app("Illuminate\Contracts\Http\Kernel")->getRouteMiddleware())
->map(function ($middleware, $key) {
$result = [
'class' => null,
'uri' => null,
'startLine' => null,
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/configs.php | php-templates/configs.php | <?php
$local = collect(glob(config_path('/*.php')))
->merge(glob(config_path('**/*.php')))
->map(fn ($path) => [
(string) Illuminate\Support\Str::of($path)
->replace([config_path('/'), '.php'], '')
->replace('/', '.'),
$path,
]);
$vendor = collect(glob(base_path('ve... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/routes.php | php-templates/routes.php | <?php
function vsCodeGetRouterReflection(Illuminate\Routing\Route $route)
{
if ($route->getActionName() === 'Closure') {
return new ReflectionFunction($route->getAction()['uses']);
}
if (!str_contains($route->getActionName(), '@')) {
return new ReflectionClass($route->getActionName());
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/translations.php | php-templates/translations.php | <?php
function vsCodeGetTranslationsFromFile(Symfony\Component\Finder\SplFileInfo $file, $path, $namespace)
{
if ($file->getExtension() !== 'php') {
return null;
}
$filePath = $file->getRealPath();
$relativePath = trim(str_replace($path, '', $file->getPath()), DIRECTORY_SEPARATOR);
$lang ... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/views.php | php-templates/views.php | <?php
function vsCodeFindBladeFiles($path)
{
$paths = [];
if (!is_dir($path)) {
return $paths;
}
foreach (
Symfony\Component\Finder\Finder::create()
->files()
->name('*.blade.php')
->in($path) as $file
) {
$paths[] = [
'path'... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/php-templates/auth.php | php-templates/auth.php | <?php
return collect(Illuminate\Support\Facades\Gate::abilities())
->map(function ($policy, $key) {
$reflection = new ReflectionFunction($policy);
$policyClass = null;
$closureThis = $reflection->getClosureThis();
if ($closureThis && get_class($closureThis) === Illuminate\Auth\Acc... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Method.php | src/Method.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Macro.php | src/Macro.php | <?php
namespace Barryvdh\LaravelIdeHelper;
use Barryvdh\Reflection\DocBlock;
use Barryvdh\Reflection\DocBlock\Tag;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Support\Collection;
class Macro extends Method
{
protected static $macroDefaults = [];
/**
* Macro constructor.
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Alias.php | src/Alias.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Factories.php | src/Factories.php | <?php
namespace Barryvdh\LaravelIdeHelper;
use Exception;
use Illuminate\Database\Eloquent\Factory;
use ReflectionClass;
class Factories
{
public static function all()
{
$factories = [];
if (static::isLaravelSevenOrLower()) {
$factory = app(Factory::class);
$definiti... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/IdeHelperServiceProvider.php | src/IdeHelperServiceProvider.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Eloquent.php | src/Eloquent.php | <?php
/**
* Laravel IDE Helper to add \Eloquent mixin to Eloquent\Model
*
* @author Charles A. Peterson <artistan@gmail.com>
*/
namespace Barryvdh\LaravelIdeHelper;
use Barryvdh\Reflection\DocBlock;
use Barryvdh\Reflection\DocBlock\Context;
use Barryvdh\Reflection\DocBlock\Serializer as DocBlockSerializer;
use B... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Generator.php | src/Generator.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Listeners/GenerateModelHelper.php | src/Listeners/GenerateModelHelper.php | <?php
namespace Barryvdh\LaravelIdeHelper\Listeners;
use Illuminate\Console\Events\CommandFinished;
use Illuminate\Contracts\Config\Repository as Config;
use Illuminate\Contracts\Console\Kernel as Artisan;
class GenerateModelHelper
{
/**
* Tracks whether we should run the models command on the CommandFinish... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Contracts/ModelHookInterface.php | src/Contracts/ModelHookInterface.php | <?php
namespace Barryvdh\LaravelIdeHelper\Contracts;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Illuminate\Database\Eloquent\Model;
interface ModelHookInterface
{
public function run(ModelsCommand $command, Model $model): void;
}
| php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Console/MetaCommand.php | src/Console/MetaCommand.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2015 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Console/EloquentCommand.php | src/Console/EloquentCommand.php | <?php
/**
* Laravel IDE Helper Generator - Eloquent Model Mixin
*
* @author Charles A. Peterson <artistan@gmail.com>
* @copyright 2017 Charles A. Peterson / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barr... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Console/ModelsCommand.php | src/Console/ModelsCommand.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | true |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Console/GeneratorCommand.php | src/Console/GeneratorCommand.php | <?php
/**
* Laravel IDE Helper Generator
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @copyright 2014 Barry vd. Heuvel / Fruitcake Studio (http://www.fruitcakestudio.nl)
* @license http://www.opensource.org/licenses/mit-license.php MIT
* @link https://github.com/barryvdh/laravel-ide-helper
*/
... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/src/Parsers/PhpDocReturnTypeParser.php | src/Parsers/PhpDocReturnTypeParser.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Parsers;
class PhpDocReturnTypeParser
{
/**
* @var string
*/
private string $typeAlias;
/**
* @var array
*/
private array $namespaceAliases;
/**
* @param string $typeAlias
* @param array $namespaceA... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/MethodTest.php | tests/MethodTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use Barryvdh\LaravelIdeHelper\Method;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Query\Builder as QueryBuilder;
use PHPUnit\Framework\TestCase;
class MethodTest extends TestCase
{
/**
* 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/AliasTest.php | tests/AliasTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use Barryvdh\LaravelIdeHelper\Alias;
use Barryvdh\LaravelIdeHelper\Macro;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Query\Builder;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Facade;
/... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/SnapshotPhpDriver.php | tests/SnapshotPhpDriver.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use PHPUnit\Framework\Assert;
use Spatie\Snapshots\Driver;
class SnapshotPhpDriver implements Driver
{
public function serialize($data): string
{
return str_replace(["\r\n", "\r"], "\n", (string) $data);
}
public 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/SnapshotTxtDriver.php | tests/SnapshotTxtDriver.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use PHPUnit\Framework\Assert;
use Spatie\Snapshots\Driver;
class SnapshotTxtDriver implements Driver
{
public function serialize($data): string
{
return str_replace(["\r\n", "\r"], "\n", (string) $data);
}
public 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/MacroTest.php | tests/MacroTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use Barryvdh\LaravelIdeHelper\Macro;
use Barryvdh\Reflection\DocBlock;
use Barryvdh\Reflection\DocBlock\Tag;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Routing\UrlGenerator;
use ReflectionClass;
use ReflectionF... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/TestCase.php | tests/TestCase.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Mockery;
use Orchestra\Testbench\TestCase as BaseTestCase;
use Spatie\Snapshots\MatchesSnapshots;
use Symfony\Component\Console\Tester\CommandTester;
abstract class Tes... | php | MIT | 2ac73f2953f59e43b798e959a352e09305cb5320 | 2026-01-04T15:02:42.026190Z | false |
barryvdh/laravel-ide-helper | https://github.com/barryvdh/laravel-ide-helper/blob/2ac73f2953f59e43b798e959a352e09305cb5320/tests/RealTimeFacadesTest.php | tests/RealTimeFacadesTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests;
use Barryvdh\LaravelIdeHelper\Generator;
use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
use Illuminate\Foundation\AliasLoader;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\View;
use PhpParser\Lexer\Emulative;
use PhpPar... | 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/EloquentCommandTest.php | tests/Console/EloquentCommandTest.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\EloquentCommand;
use Barryvdh\LaravelIdeHelper\Console\EloquentCommand;
use Barryvdh\LaravelIdeHelper\Tests\TestCase;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Filesystem\Filesystem;
use Mockery;
use ReflectionClass;
class... | 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/AbstractModelsCommand.php | tests/Console/ModelsCommand/AbstractModelsCommand.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
use Barryvdh\LaravelIdeHelper\Tests\TestCase;
abstract class AbstractModelsCommand extends TestCase
{
protected function setUp(): void
{
parent::set... | 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/DynamicRelations/Test.php | tests/Console/ModelsCommand/DynamicRelations/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DynamicRelations;
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/DynamicRelations/OtherModels/Account.php | tests/Console/ModelsCommand/DynamicRelations/OtherModels/Account.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DynamicRelations\OtherModels;
use Illuminate\Database\Eloquent\Model;
class Account 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/DynamicRelations/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/DynamicRelations/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DynamicRelations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
... | 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/DynamicRelations/Models/Dynamic.php | tests/Console/ModelsCommand/DynamicRelations/Models/Dynamic.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DynamicRelations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
... | 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/Ignored/Test.php | tests/Console/ModelsCommand/Ignored/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Ignored;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Ignored\Models\Ignore... | 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/Ignored/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/Ignored/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Ignored\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @method static \Illuminate\Database\Eloquent\Builder<static>|NotIgnored newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|NotIgn... | 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/Ignored/Models/Ignored.php | tests/Console/ModelsCommand/Ignored/Models/Ignored.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Ignored\Models;
use Illuminate\Database\Eloquent\Model;
class Ignored 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/Ignored/Models/NotIgnored.php | tests/Console/ModelsCommand/Ignored/Models/NotIgnored.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Ignored\Models;
use Illuminate\Database\Eloquent\Model;
class NotIgnored 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/GenerateMixinCollection/Test.php | tests/Console/ModelsCommand/GenerateMixinCollection/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection;
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/GenerateMixinCollection/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/GenerateMixinCollection/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\NonModels\CollectionModel;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection... | 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/GenerateMixinCollection/NonModels/NonModel.php | tests/Console/ModelsCommand/GenerateMixinCollection/NonModels/NonModel.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\NonModels;
class NonModel
{
}
| 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/GenerateMixinCollection/NonModels/CollectionModel.php | tests/Console/ModelsCommand/GenerateMixinCollection/NonModels/CollectionModel.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\NonModels;
class CollectionModel
{
}
| 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/GenerateMixinCollection/Models/WithCollection.php | tests/Console/ModelsCommand/GenerateMixinCollection/Models/WithCollection.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection\NonModels\CollectionModel;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateMixinCollection... | 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/GenerateBasicPhpDocWithEnumDefaults/Test.php | tests/Console/ModelsCommand/GenerateBasicPhpDocWithEnumDefaults/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults;
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/GenerateBasicPhpDocWithEnumDefaults/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/GenerateBasicPhpDocWithEnumDefaults/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Enums\PostStatus;
use Illuminate\Database\Eloquent\Builder;
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/GenerateBasicPhpDocWithEnumDefaults/Enums/PostStatus.php | tests/Console/ModelsCommand/GenerateBasicPhpDocWithEnumDefaults/Enums/PostStatus.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Enums;
enum PostStatus
{
case Published;
case Unpublished;
case Archived;
}
| 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/GenerateBasicPhpDocWithEnumDefaults/Models/Post.php | tests/Console/ModelsCommand/GenerateBasicPhpDocWithEnumDefaults/Models/Post.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpDocWithEnumDefaults\Enums\PostStatus;
use Illuminate\Database\Eloquent\Builder;
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/Relations/Test.php | tests/Console/ModelsCommand/Relations/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types\Sam... | 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/Relations/Types/SampleToManyRelationType.php | tests/Console/ModelsCommand/Relations/Types/SampleToManyRelationType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
class SampleToManyRelationType extends Relation
{
public function addConstraints()
{
// Fa... | 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/Relations/Types/SampleToAnyMorphedRelationType.php | tests/Console/ModelsCommand/Relations/Types/SampleToAnyMorphedRelationType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
class SampleToAnyMorphedRelationType extends Relation
{
public function addConstraints()
{
... | 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/Relations/Types/SampleToOneRelationType.php | tests/Console/ModelsCommand/Relations/Types/SampleToOneRelationType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\Concerns\SupportsDefaultModels;
use Illuminate\Database\Eloquent\Relations\Re... | 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/Relations/Types/SampleToBadlyNamedNotManyRelationType.php | tests/Console/ModelsCommand/Relations/Types/SampleToBadlyNamedNotManyRelationType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\Concerns\SupportsDefaultModels;
use Illuminate\Database\Eloquent\Relations\Re... | 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/Relations/Types/SampleToAnyRelationType.php | tests/Console/ModelsCommand/Relations/Types/SampleToAnyRelationType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\Relation;
class SampleToAnyRelationType extends Relation
{
public function addConstraints()
{
// Fak... | 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/Relations/Traits/HasTestRelations.php | tests/Console/ModelsCommand/Relations/Traits/HasTestRelations.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Traits;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types\SampleToAnyMorphedRelationType;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Types\SampleToAnyRelationType;... | 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/Relations/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/Relations/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property int $id
* @property int $not_null_column_with_foreign_key_constraint
* @property int $not_... | 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/Relations/__snapshots__/Test__testRelationNotNullable__1.php | tests/Console/ModelsCommand/Relations/__snapshots__/Test__testRelationNotNullable__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property int $id
* @property int $not_null_column_with_foreign_key_constraint
* @property int $not_... | 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/Relations/ModelsOtherNamespace/AnotherModel.php | tests/Console/ModelsCommand/Relations/ModelsOtherNamespace/AnotherModel.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\ModelsOtherNamespace;
use Illuminate\Database\Eloquent\Model;
class AnotherModel 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/Relations/Models/BelongsToVariation.php | tests/Console/ModelsCommand/Relations/Models/BelongsToVariation.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class BelongsToVariation extends Model
{
public function notNullColumnWithForeignKeyConstraint(): Belongs... | 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/Relations/Models/CompositeBelongsToVariation.php | tests/Console/ModelsCommand/Relations/Models/CompositeBelongsToVariation.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class CompositeBelongsToVariation extends Model
{
public $table = 'belongs_to_variations';
public fu... | 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/Relations/Models/Simple.php | tests/Console/ModelsCommand/Relations/Models/Simple.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\ModelsOtherNamespace\AnotherModel;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Relations\Traits\HasTestRelations;
use Illu... | 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/Interfaces/Test.php | tests/Console/ModelsCommand/Interfaces/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Interfaces;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
final 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/Interfaces/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/Interfaces/__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/Interfaces/Models/User.php | tests/Console/ModelsCommand/Interfaces/Models/User.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Interfaces\Models;
use Illuminate\Contracts\Auth\Authenticatable;
use Illuminate\Database\Eloquent\Model;
class User extends Model implements Authenticatable
{
public function getAuthIdentifierName()
{
// ... | 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/GenerateBasicPhpdoc/Test.php | tests/Console/ModelsCommand/GenerateBasicPhpdoc/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdoc;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
class Test extends AbstractModelsCommand
{
public function tes... | 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/GenerateBasicPhpdoc/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/GenerateBasicPhpdoc/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdoc\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string|null $char_nullable
* @property string $char_not_nullable
* @property string|null $string_nullable
* @pro... | 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/GenerateBasicPhpdoc/Models/Post.php | tests/Console/ModelsCommand/GenerateBasicPhpdoc/Models/Post.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GenerateBasicPhpdoc\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/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Test.php | tests/Console/ModelsCommand/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DoesNotGeneratePhpdocWithExternalEloquentBuilder;
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/DoesNotGeneratePhpdocWithExternalEloquentBuilder/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/DoesNotGeneratePhpdocWithExternalEloquentBuilder/__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/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Builders/PostExternalQueryBuilder.php | tests/Console/ModelsCommand/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Builders/PostExternalQueryBuilder.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DoesNotGeneratePhpdocWithExternalEloquentBuilder\Builders;
use Illuminate\Database\Eloquent\Builder;
class PostExternalQueryBuilder extends Builder
{
public function isActive(): self
{
return $this;
}
... | 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/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Models/Post.php | tests/Console/ModelsCommand/DoesNotGeneratePhpdocWithExternalEloquentBuilder/Models/Post.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DoesNotGeneratePhpdocWithExternalEloquentBuilder\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\DoesNotGeneratePhpdocWithExternalEloquentBuilder\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/GeneratePhpdocWithFqn/Test.php | tests/Console/ModelsCommand/GeneratePhpdocWithFqn/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
class Test extends AbstractModelsCommand
{
public function 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/GeneratePhpdocWithFqn/Casts/CastType.php | tests/Console/ModelsCommand/GeneratePhpdocWithFqn/Casts/CastType.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn\Casts;
final class CastType
{
}
| 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/GeneratePhpdocWithFqn/__snapshots__/Test__test__1.php | tests/Console/ModelsCommand/GeneratePhpdocWithFqn/__snapshots__/Test__test__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn\Casts\CastType;
use Eloquent;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Databa... | 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/GeneratePhpdocWithFqn/Models/Post.php | tests/Console/ModelsCommand/GeneratePhpdocWithFqn/Models/Post.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn\Models;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\GeneratePhpdocWithFqn\Casts\CastType;
use Eloquent;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Databa... | 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/CustomPhpdocTags/Test.php | tests/Console/ModelsCommand/CustomPhpdocTags/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomPhpdocTags;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
class Test extends AbstractModelsCommand
{
/**
* This test 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/CustomPhpdocTags/__snapshots__/Test__testNoSpaceAfterCustomPhpdocTag__1.php | tests/Console/ModelsCommand/CustomPhpdocTags/__snapshots__/Test__testNoSpaceAfterCustomPhpdocTag__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomPhpdocTags\Models;
use Illuminate\Database\Eloquent\Model;
/**
* The `@SuppressWarnings` tag below contains no space before the `(` but when
* the class phpdoc is written back, one is inserted.
*
* @link https:/... | 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/CustomPhpdocTags/Models/Simple.php | tests/Console/ModelsCommand/CustomPhpdocTags/Models/Simple.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\CustomPhpdocTags\Models;
use Illuminate\Database\Eloquent\Model;
/**
* The `@SuppressWarnings` tag below contains no space before the `(` but when
* the class phpdoc is written back, one is inserted.
*
* @link https:/... | 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/PHPStormNoInspection/Test.php | tests/Console/ModelsCommand/PHPStormNoInspection/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\PHPStormNoInspection;
use Barryvdh\LaravelIdeHelper\Console\ModelsCommand;
use Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AbstractModelsCommand;
class Test extends AbstractModelsCommand
{
public function te... | 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/PHPStormNoInspection/__snapshots__/Test__testNoinspectionPresent__1.php | tests/Console/ModelsCommand/PHPStormNoInspection/__snapshots__/Test__testNoinspectionPresent__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\PHPStormNoInspection\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery()
* @method static \Illuminate\Database\E... | 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/PHPStormNoInspection/__snapshots__/Test__testNoinspectionNotPresent__1.php | tests/Console/ModelsCommand/PHPStormNoInspection/__snapshots__/Test__testNoinspectionNotPresent__1.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\PHPStormNoInspection\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery()
* @method static \Illuminate\Database\E... | 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/PHPStormNoInspection/Models/Simple.php | tests/Console/ModelsCommand/PHPStormNoInspection/Models/Simple.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\PHPStormNoInspection\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/QueryScopes/Test.php | tests/Console/ModelsCommand/QueryScopes/Test.php | <?php
declare(strict_types=1);
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\QueryScopes;
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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.