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 | |
| namespace App\Services\Dto; | |
| abstract class AbstractDto | |
| { | |
| /** | |
| * AbstractRequestDto constructor. | |
| * @param array $data | |
| */ |
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
| { | |
| "blade.format.enable": true, | |
| "cSpell.language": "en,ru", | |
| "editor.minimap.enabled": false, | |
| "editor.renderWhitespace": "none", | |
| "emmet.excludeLanguages": [ | |
| "markdown" | |
| ], | |
| "files.trimTrailingWhitespace": true, | |
| "files.insertFinalNewline": true, |
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 | |
| namespace App\Http\Bindings; | |
| class Transport | |
| { | |
| /** | |
| * Resolve the route bind | |
| * | |
| * @param string $value |
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 | |
| class Container | |
| { | |
| protected $target; | |
| protected $value; | |
| public function __construct($target, $value) | |
| { | |
| $this->target = $target; |