framework
framework copied to clipboard
The Laravel Framework.
WIP. Generated with: ```sh grep -R -E " static [A-Za-z_]* ?\\\$" src > statics.txt ``` ## Candidates for conversion to a constant. - [ ] src/Illuminate/Encryption/Encrypter.php: private static $supportedCiphers =...
### Laravel Version 10.43.0 ### PHP Version 8.2.10 ### Database Driver & Version _No response_ ### Description As far as I know it is possible to have working jobs without...
according to https://github.com/laravel/framework/issues/49927, when logging to stderr, certain strings will cause issues. In handleProcessOutput of ServeCommand.php, the output is matched against certain strings. If these strings are found, additional logic...
### Laravel Version 10.43.0 ### PHP Version 8.3.2 on Docker ### Database Driver & Version _No response_ ### Description I came across a strange behavior of whereNot method in Illuminate\Testing\Fluent\Concern\Matching...
This PR fixes a couple of issues discussed in #49735 . Appropriate checks are added to `Illuminate\Database\Eloquent\Relations\BelongsTo::getForeignKeyFrom()` and `Illuminate\Database\Query\Builder::whereIntegerInRaw()` to return the proper value if a `BackedEnum` is encountered. This...
I often find myself having to dispatch jobs that I don't need to chain or batch. ```php // Before foreach($jobs as $job){ Bus::dispatch($job); } // After Bus::dispatchMany($jobs); ```
Query Builder fails on a ManyToMany relationship that has a model with an ID that is cast to an Enum
### Laravel Version 10.10 ### PHP Version 8.2.14 ### Database Driver & Version PostgreSQL 15.1 (Ubuntu 15.1-1.pgdg20.04+1) ### Description A `ManyToMany` relationship in which one or more parties casts the...
For a while now, it has been a small pain point that it's not possible to construct my mail notifications using mailables as I would do for any other outbound...
Often times when I’m cranking on tests I get frustrated by the need to stop what I’m doing to make a factory for my model. This is especially true when...
#### Background PDO connection doesn't automatically get closed when the application is unset but instead requires explicitly set to `null` to trigger connection close: ...