for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thunder\Serializard\Tests\Fake\Context;
use Thunder\Serializard\NormalizerContext\NormalizerContextInterface;
final class FakeNormalizerContext implements NormalizerContextInterface
{
private $parent;
/** @var int */
private $level = 0;
public function __construct()
}
public function withParent($parent)
$this->parent = $parent;
$this->level++;
return $this;
public function getParent()
return $this->parent;
public function getLevel()
return $this->level;