for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the timechimp bundle package.
* (c) Connect Holland.
*/
namespace ConnectHolland\TimechimpBundle\Api\Normalizer;
@trigger_error('The "NormalizerFactory" class is deprecated since Jane 5.3, use "JaneObjectNormalizer" instead.', E_USER_DEPRECATED);
/**
* @deprecated The "NormalizerFactory" class is deprecated since Jane 5.3, use "JaneObjectNormalizer" instead.
class NormalizerFactory
{
public static function create()
$normalizers = [];
$normalizers[] = new \Symfony\Component\Serializer\Normalizer\ArrayDenormalizer();
$normalizers[] = new \ConnectHolland\TimechimpBundle\Api\Normalizer\JaneObjectNormalizer();
return $normalizers;
}