for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\DoctrineORMAdminBundle\Tests\Fixtures\Util;
/**
* This class is used in the ModelManagerTest suite to test non integer/string identifiers.
* @author Jeroen Thora <[email protected]>
class NonIntegerIdentifierTestClass
{
* @var string
private $uuid;
* @param string $uuid
public function __construct($uuid)
$this->uuid = $uuid;
}
* @return string
public function __toString()
return $this->toString();
public function toString()
return $this->uuid;