for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the feed-io package.
*
* (c) Alexandre Debril <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FeedIo\Standard;
use FeedIo\Rule\DateTimeBuilder;
class Loader
{
/**
* @param DateTimeBuilder $builder
* @return array
public function getCommonStandards(DateTimeBuilder $builder)
return array(
'json' => new Json($builder),
'atom' => new Atom($builder),
'rss' => new Rss($builder),
'rdf' => new Rdf($builder),
);
}