Skip to content

Commit

Permalink
refactor: pint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pemudakoding committed Feb 27, 2023
1 parent 0a16eb1 commit 451c9d9
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Foundation/DataTransferObject/HasResolvable.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ trait HasResolvable
* @template TValue
*
* @param FormRequest | Model | array<TKey, TValue> $abstract
* @return static
*
* @throws MappingError
*/
Expand Down Expand Up @@ -46,7 +45,6 @@ public static function resolveFrom(FormRequest | Model | array $abstract): stati
* @template TValue
*
* @param array<TKey, TValue> $data
* @return static
*
* @throws MappingError
*/
Expand All @@ -67,7 +65,6 @@ public static function resolve(array $data): static
* @template TValue
*
* @param array<TKey, TValue> $data
* @return static
*
* @throws MappingError
*
Expand All @@ -80,9 +77,6 @@ public static function resolveFromArray(array $data): static

/**
* Resolve unstructured data from FormRequest
*
* @param FormRequest $request
* @return static
*/
public static function resolveFromFormRequest(FormRequest $request): static
{
Expand All @@ -91,9 +85,6 @@ public static function resolveFromFormRequest(FormRequest $request): static

/**
* Resolve unstructured data from Model
*
* @param Model $model
* @return static
*/
public static function resolveFromModel(Model $model): static
{
Expand Down Expand Up @@ -133,9 +124,6 @@ protected static function resolveTheArrayKeyForm(array $data): array

/**
* Resolve the input of array key to constructor naming
*
* @param string $key
* @return string
*/
protected static function resolveArrayKeyOfInput(string $key): string
{
Expand Down

0 comments on commit 451c9d9

Please sign in to comment.