Generated: 2026-03-09
Source:laravel/framework— commits in13.x/master [13.x]not present in12.x
Divergence point:bd6972d001af870bc0569795c823c3a54e372e70
Total PRs: 112
This repository is the source of truth for all written content and structured metadata for ollieread.com.
- Write everything in plain Markdown + YAML
- Keep content versioned in Git
- Keep structure machine-readable
- Minimise duplication (especially for Laravel release/change coverage)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Engine\Values\Concerns; | |
| use InvalidArgumentException; | |
| /** | |
| * | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Engine\Database\Query\Clauses; | |
| use Engine\Database\Query\Contracts\Expression; | |
| /** | |
| * | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Modules\Auth\Actions; | |
| use Engine\Auth\AuthTokenStore; | |
| use Engine\Core\Context; | |
| use Exception; | |
| use Modules\Auth\Actions\Results\AuthTokenResult; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace Modules\Auth; | |
| use Engine\Actions\Collectors\ActionCollector; | |
| use Engine\Actions\Collectors\ActionResourceBuilder; | |
| use Engine\Auth\AuthToken; | |
| use Engine\Auth\AuthTokenStore; | |
| use Engine\Collectors\Attributes\Collect; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "$id": "https://ollieread.com/schemas/egg/config-files.schema.json", | |
| "title": "Egg Config Files", | |
| "description": "Schema for the parsed content of the 'config.files' field. This is the structure that exists after decoding the stringified JSON. Each key is a file path relative to the server root, and the value defines how Wings should modify that file.", | |
| "type": "object", | |
| "additionalProperties": { | |
| "$ref": "#/$defs/config_file_entry" | |
| }, | |
| "$defs": { |
You could provide a number of generic and agnostic attributes for use with dependency-injection solutions without enforcing any sort of contract or implementing structure. This would be achieved by only targetting things that we know will be used. These attributes could be used with auto-wiring or a compilation state that collects all the data for production deployment or something.
These attributes:
- Wouldn't enforce a particular implementation
- Wouldn't restrict the usage of the class
- Wouldn't even require DI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** @noinspection UnknownInspectionInspection */ | |
| declare(strict_types=1); | |
| namespace Smpl\Logic; | |
| use Smpl\Logic\Contracts\Consumer; | |
| use Smpl\Logic\Contracts\Supplier; | |
| use Smpl\Logic\Exceptions\OptionalException; | |
| use Throwable; |
NewerOlder