for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Author: Nil Portugués Calderó <[email protected]>
* Date: 8/29/15
* Time: 12:47 PM.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace NilPortugues\Serializer;
use NilPortugues\Serializer\Strategy\XmlStrategy;
class XmlSerializer extends Serializer
{
public function __construct()
parent::__construct(new XmlStrategy());
}