Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shindakioku/request-hydrator
https://github.com/shindakioku/request-hydrator
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shindakioku/request-hydrator
- Owner: shindakioku
- Created: 2019-07-28T18:38:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-04T19:52:02.000Z (about 5 years ago)
- Last Synced: 2024-04-17T08:11:42.494Z (9 months ago)
- Language: PHP
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Request-Hydrator
```php
'required|string',
'email' => 'required|email'
];
}
}
``````php
requestHydrator = $requestHydrator;
}
public function create()
{
return $this->requestHydrator->queries(new CreateUser)
->left(fn($validationErrors) => ...)
->right(fn(CreateUser $user) => $this->register->execute($user));
}
}
```--------------------
```php