-
-
Notifications
You must be signed in to change notification settings - Fork 838
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support php7.4 nullable typed properties for JMS serializer.
- Loading branch information
Showing
4 changed files
with
111 additions
and
0 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
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,43 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the NelmioApiDocBundle package. | ||
* | ||
* (c) Nelmio | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace Nelmio\ApiDocBundle\Tests\Functional\Entity; | ||
|
||
use JMS\Serializer\Annotation as Serializer; | ||
use Nelmio\ApiDocBundle\Annotation\Model; | ||
use OpenApi\Annotations as OA; | ||
|
||
class JMSTyped | ||
{ | ||
/** | ||
* @Serializer\Type("integer") | ||
*/ | ||
private int $id; | ||
|
||
/** | ||
* @OA\Property(ref=@Model(type=JMSUser::class)) | ||
* @Serializer\SerializedName("user") | ||
*/ | ||
private JMSUser $User; | ||
|
||
/** | ||
* @Serializer\Type("string") | ||
*/ | ||
private ?string $name; | ||
|
||
/** | ||
* @Serializer\VirtualProperty | ||
* @OA\Property(ref=@Model(type=JMSUser::class)) | ||
*/ | ||
public function getVirtualFriend(): JMSUser | ||
{ | ||
} | ||
} |
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