for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FOS\ElasticaBundle\Tests\Mocks;
class ObjectSerializerPersisterPOPO
{
public $id = 123;
public $name = 'popoName';
public function getId()
return $this->id;
}
public function getName()
return $this->name;