File: /var/www/vhost/disk-apps/magento.bikenow.co/vendor/jms/serializer/tests/Fixtures/SimpleObject.php
<?php
namespace JMS\Serializer\Tests\Fixtures;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
class SimpleObject
{
/** @Type("string") */
private $foo;
/**
* @SerializedName("moo")
* @Type("string")
*/
private $bar;
/** @Type("string") */
protected $camelCase = 'boo';
public function __construct($foo, $bar)
{
$this->foo = $foo;
$this->bar = $bar;
}
public function getFoo()
{
return $this->foo;
}
public function getBar()
{
return $this->bar;
}
}