-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: extra target values * optimization * process properties * fix error * changelog * handle invalid extra target properties
- Loading branch information
Showing
13 changed files
with
386 additions
and
27 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of rekalogika/mapper package. | ||
* | ||
* (c) Priyadi Iman Nurcahyo <https://rekalogika.dev> | ||
* | ||
* For the full copyright and license information, please view the LICENSE file | ||
* that was distributed with this source code. | ||
*/ | ||
|
||
namespace Rekalogika\Mapper\Context; | ||
|
||
/** | ||
* Adds additional values to the target object | ||
*/ | ||
final readonly class ExtraTargetValues | ||
{ | ||
/** | ||
* @param array<class-string,array<string,mixed>> $arguments | ||
*/ | ||
public function __construct( | ||
private array $arguments = [], | ||
) {} | ||
|
||
/** | ||
* @param list<class-string> $classes The class and its parent classes and interfaces. | ||
* @return array<string,mixed> | ||
*/ | ||
public function getArgumentsForClass(array $classes): array | ||
{ | ||
$arguments = []; | ||
|
||
foreach ($classes as $class) { | ||
if (isset($this->arguments[$class])) { | ||
$arguments = array_merge($arguments, $this->arguments[$class]); | ||
} | ||
} | ||
|
||
return $arguments; | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/Transformer/Exception/ExtraTargetPropertyNotFoundException.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of rekalogika/mapper package. | ||
* | ||
* (c) Priyadi Iman Nurcahyo <https://rekalogika.dev> | ||
* | ||
* For the full copyright and license information, please view the LICENSE file | ||
* that was distributed with this source code. | ||
*/ | ||
|
||
namespace Rekalogika\Mapper\Transformer\Exception; | ||
|
||
use Rekalogika\Mapper\Context\Context; | ||
use Rekalogika\Mapper\Exception\LogicException; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
class ExtraTargetPropertyNotFoundException extends LogicException | ||
{ | ||
/** | ||
* @param class-string $class | ||
*/ | ||
public function __construct( | ||
string $class, | ||
string $property, | ||
Context $context, | ||
) { | ||
$message = \sprintf( | ||
'Mapper is called with "ExtraTargetValues", but cannot find the target property "%s" in class "%s"', | ||
$property, | ||
$class, | ||
); | ||
|
||
parent::__construct($message, context: $context); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.