for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thunder\Serializard\Tests\Fake;
final class FakeTag
{
private $id;
private $name;
private $user;
public function __construct($id, $name)
$this->id = $id;
$this->name = $name;
}
public function setId($id) { $this->id = $id; return $this; }
public function getId() { return $this->id; }
public function setName($name) { $this->name = $name; return $this; }
public function getName() { return $this->name; }
public function setUser(FakeUserParentParent $user) { $this->user = $user; return $this; }
public function getUser() { return $this->user; }
public function clearUser() { $this->user = null; }