1234567891011121314151617181920 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures;
- use JMS\Serializer\Annotation as Serializer;
- /**
- * @Serializer\Exclude("NONE")
- */
- class SimpleInternalObject extends \Exception
- {
- private $bar;
- protected $camelCase = 'boo';
- public function __construct($foo, $bar)
- {
- parent::__construct($foo);
- $this->bar = $bar;
- }
- }
|