1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Fixtures;
6
7use JMS\Serializer\Annotation\ExclusionPolicy;
8use JMS\Serializer\Annotation\Expose;
9
10/**
11 * @author Johannes M. Schmitt <schmittjoh@gmail.com>
12 *
13 * @ExclusionPolicy("all")
14 */
15class AllExcludedObject
16{
17    private $foo = 'foo';
18
19    /**
20     * @Expose
21     */
22    private $bar = 'bar';
23}
24