Flashcard step 3 (serialization groups)
<?php | |
// ... | |
use Symfony\Component\Serializer\Annotation\Groups; | |
class Subject | |
{ | |
/** | |
* ... | |
* @Groups({"subjectList"}) | |
*/ | |
private $id; | |
/** | |
* ... | |
* @Groups({"subjectList", "subjectCreate"}) | |
*/ | |
public $name; | |
// ... | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment