%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/serializer/src/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/php-xapi/serializer/src/SerializerFactoryInterface.php |
<?php
/*
* This file is part of the xAPI package.
*
* (c) Christian Flothmann <christian.flothmann@xabbuh.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Xabbuh\XApi\Serializer;
/**
* Handles the creation of serializer objects.
*
* @author Christian Flothmann <christian.flothmann@xabbuh.de>
*/
interface SerializerFactoryInterface
{
/**
* Creates a statement serializer.
*
* @return StatementSerializerInterface
*/
public function createStatementSerializer();
/**
* Creates a statement result serializer.
*
* @return StatementResultSerializerInterface
*/
public function createStatementResultSerializer();
/**
* Creates an actor serializer.
*
* @return ActorSerializerInterface
*/
public function createActorSerializer();
/**
* Creates a document data serializer.
*
* @return DocumentDataSerializerInterface
*/
public function createDocumentDataSerializer();
}