Andrew Mast
Andrew Mast
I checked and the package does have "IDR_MAINFRAME". Okay, I will try those other projects
I was using 64
I'm sure you're already on it, but the class name is still `WithoutRelations`.
@rohDevellopper Feel free to open a PR to fix this! Note that there was an attempt to resolve the problem in #55135, but it was rejected. So maybe try a...
+1 I really would want this for a 'community'
> Laravel clearly does a custom implementation of exactly that, yet, it isn't well documented as such. We actually do have documentation for it. Its on the laravel website under...
I'm getting the same thing ``` WARN Bootstrapping of extension Clockwork\Support\Laravel\Tests\ClockworkExtension failed: Interface "PHPUnit\Event\Test\AssertionSucceededSubscriber" not found #0 /var/www/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionBootstrapper.php(73): Clockwork\Support\Laravel\Tests\ClockworkExtension->bootstrap(Object(PHPUnit\TextUI\Configuration\Configuration), Object(PHPUnit\Runner\Extension\Facade), Object(PHPUnit\Runner\Extension\ParameterCollection)) #1 /var/www/vendor/phpunit/phpunit/src/TextUI/Application.php(437): PHPUnit\Runner\Extension\ExtensionBootstrapper->bootstrap('Clockwork\\Suppo...', Array) #2 /var/www/vendor/phpunit/phpunit/src/TextUI/Application.php(139): PHPUnit\TextUI\Application->bootstrapExtensions(Object(PHPUnit\TextUI\Configuration\Configuration)) #3 /var/www/vendor/pestphp/pest/src/Kernel.php(103):...
I believe this behavior is due to the [`matchCase`](https://github.com/laravel/framework/blob/12.x/src/Illuminate/Support/Pluralizer.php#L88-L99) method in the `Pluralizer` class. Using the inflector directly results in the expected lowercase "s": ```php \Illuminate\Support\Pluralizer::inflector()->pluralize('DVD'); // DVDs ``` However,...
I believe there is no accurate way of determining if a word is an acronym instead of text that happens to be all uppercase.
Not to be rude, but this feels like an AI response. In my first comment, I suggested the use of a boolean flag to solve this issue, and I think...